Fix home manager dotfiles
This commit is contained in:
@@ -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 = {
|
||||||
|
|||||||
@@ -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}";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -19,5 +19,6 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
shellInit = builtins.readFile ./config.fish;
|
shellInit = builtins.readFile ./config.fish;
|
||||||
|
interactiveShellInit = builtins.readFile ./interactive.fish;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
if test "$KITTY_STR" -eq 1
|
||||||
|
fastfetch
|
||||||
|
end
|
||||||
@@ -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";
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
theme = ./theme.rasi;
|
theme = ./tokyonight-mid.rasi;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user