Home Manager 25.05

This commit is contained in:
wayne 2025-06-16 13:06:21 -07:00
parent 48ff99f129
commit 5d49db53ff
6 changed files with 38 additions and 45 deletions

View File

@ -165,7 +165,7 @@ in
starship starship
yazi yazi
appimage-run appimage-run
nerdfonts ubuntu_font_family # nerdfonts ubuntu_font_family
doublecmd filezilla doublecmd filezilla
libreoffice libreoffice
@ -205,7 +205,7 @@ in
ripgrep.enable = true; ripgrep.enable = true;
vscode = { vscode = {
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ profiles.default.extensions = with pkgs.vscode-extensions; [
devsense.profiler-php-vscode devsense.profiler-php-vscode
devsense.phptools-vscode devsense.phptools-vscode
devsense.composer-php-vscode devsense.composer-php-vscode

View File

@ -29,7 +29,7 @@ with pkgs;
keepassxc git-credential-keepassxc keybase-gui keybase kbfs keepassxc git-credential-keepassxc keybase-gui keybase kbfs
remmina remmina
mapscii # mapscii
# tidal-dl # tidal-dl
postman postman
] ]

View File

@ -1,6 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
let let
polycat = pkgs.callPackage ../../pkgs/derivations/polycat {}; # polycat = pkgs.callPackage ../../pkgs/derivations/polycat {};
in in
with pkgs; with pkgs;
[ [
@ -13,7 +13,7 @@ with pkgs;
qalculate-qt qalculate-qt
xorg.xrandr xorg.xrandr
dconf dconf
polycat # polycat
# adwaita-qt # adwaita-qt
adwaita-qt6 adwaita-icon-theme adwaita-qt6 adwaita-icon-theme
] ]

View File

@ -15,7 +15,7 @@ in
# stylix.targets.kitty.enable = true; # stylix.targets.kitty.enable = true;
font = { font = {
name = "JetBrainsMono Nerd Font"; name = "JetBrainsMono Nerd Font";
package = pkgs.nerdfonts; package = pkgs.nerd-fonts.jetbrains-mono;
}; };
settings = { settings = {
themeFile = "Nord"; themeFile = "Nord";

View File

@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
# deepClone = true; # deepClone = true;
# leaveDotGit = false; # leaveDotGit = false;
url = "https://github.com/2IMT/polycat.git"; url = "https://github.com/2IMT/polycat.git";
hash = "sha256-zm5AJEKp9OcAPGYy86R1hxDQu3600zJWsPdQyx0OGKw="; # replace this with the correct sha256 for the download hash = "sha256-wpDx6hmZe/dLv+F+kbo+YUIZ2A8XgnrZP0amkz6I5IQ="; # replace this with the correct sha256 for the download
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];

View File

@ -7,42 +7,35 @@
services.mako = { services.mako = {
enable = true; enable = true;
font = "monospace 14"; settings = {
sort = "-time"; font = "monospace 14";
width = 350; sort = "-time";
height = 200; width = 350;
output = "DP-4"; height = 200;
# backgroundColor = "#00000080"; output = "DP-4";
margin = "20"; # backgroundColor = "#00000080";
# outerMargin = "10"; margin = 20;
markup = true; # outerMargin = "10";
borderSize = 2; markup = true;
# borderColor = "#ffffff"; borderSize = 2;
borderRadius = 15; # borderColor = "#ffffff";
icons = true; borderRadius = 15;
layer = "top"; icons = true;
maxIconSize = 64; layer = "top";
defaultTimeout = 5000; maxIconSize = 64;
ignoreTimeout = false; defaultTimeout = 5000;
padding = "20"; ignoreTimeout = false;
anchor = "top-center"; padding = 20;
format = "<b>%s</b>\\n%b"; anchor = "top-center";
actions = true; format = "<b>%s</b>\\n%b";
# textAlignment = "center"; actions = true;
extraConfig = '' # textAlignment = "center";
[urgency=low] "urgency=low" = { border-color = "#cccccc"; };
border-color=#cccccc "urgency=normal" = { border-color = "#d08770"; };
"urgency=critical" = { border-color = "#bf616a"; default-timeout = 0; };
[urgency=normal] "category=mpd" = { "default-timeout" = 2000; group-by = "category"; };
border-color=#d08770 };
};
[urgency=high] # '';
border-color=#bf616a # };
default-timeout=0
[category=mpd]
default-timeout=2000
group-by=category
'';
};
} }