Fix home manager dotfiles

This commit is contained in:
2026-07-07 16:03:40 +01:00
parent 9a94ed7331
commit 4ca03fde37
6 changed files with 11 additions and 10 deletions
+3 -6
View File
@@ -1,17 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
let let
menuify = pkgs.substituteAll { script = pkgs.replaceVars ./menuify.sh {
src = ./menuify.sh;
isExecutable = true;
dir = "bin";
name = "menuify";
bash = pkgs.bash; bash = pkgs.bash;
dmenu = pkgs.dmenu; dmenu = pkgs.dmenu;
gawk = pkgs.gawk; gawk = pkgs.gawk;
coreutils = pkgs.coreutils; coreutils = pkgs.coreutils;
}; };
menuify = pkgs.writeShellScriptBin "menuify" (builtins.readFile script);
in in
{ {
services.dunst = { services.dunst = {
+2 -2
View File
@@ -48,7 +48,7 @@
} }
{ {
type = "custom"; type = "custom";
format = "\\u001b[33m  ->\\u001b[39m kutu.rb"; format = "{#yellow}  ->{#} kutu.rb";
} }
{ {
type = "host"; type = "host";
@@ -67,7 +67,7 @@
} }
{ {
type = "custom"; type = "custom";
format = " \\u001b[90m \\u001b[31m \\u001b[32m \\u001b[33m \\u001b[34m \\u001b[35m \\u001b[36m \\u001b[37m \\u001b[38m \\u001b[39m"; format = " {#black} {#red} {#green} {#yellow} {#blue} {#magenta} {#cyan} {#white} {#default}";
} }
]; ];
}; };
+1
View File
@@ -19,5 +19,6 @@
}; };
shellInit = builtins.readFile ./config.fish; shellInit = builtins.readFile ./config.fish;
interactiveShellInit = builtins.readFile ./interactive.fish;
}; };
} }
+3
View File
@@ -0,0 +1,3 @@
if test "$KITTY_STR" -eq 1
fastfetch
end
+1 -1
View File
@@ -27,7 +27,7 @@
allow_remote_control = "yes"; allow_remote_control = "yes";
listen_on = "unix:/tmp/mykitty"; listen_on = "unix:/tmp/mykitty";
startup_session = ./startup; startup_session = "${./startup}";
foreground = "#CDD6F4"; foreground = "#CDD6F4";
background = "#080014"; background = "#080014";
+1 -1
View File
@@ -4,6 +4,6 @@
programs.rofi = { programs.rofi = {
enable = true; enable = true;
theme = ./theme.rasi; theme = ./tokyonight-mid.rasi;
}; };
} }