Fix home manager dotfiles
This commit is contained in:
@@ -1,17 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
menuify = pkgs.substituteAll {
|
||||
src = ./menuify.sh;
|
||||
isExecutable = true;
|
||||
dir = "bin";
|
||||
name = "menuify";
|
||||
|
||||
script = pkgs.replaceVars ./menuify.sh {
|
||||
bash = pkgs.bash;
|
||||
dmenu = pkgs.dmenu;
|
||||
gawk = pkgs.gawk;
|
||||
coreutils = pkgs.coreutils;
|
||||
};
|
||||
|
||||
menuify = pkgs.writeShellScriptBin "menuify" (builtins.readFile script);
|
||||
in
|
||||
{
|
||||
services.dunst = {
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
}
|
||||
{
|
||||
type = "custom";
|
||||
format = "\\u001b[33m╰─ ->\\u001b[39m kutu.rb";
|
||||
format = "{#yellow}╰─ ->{#} kutu.rb";
|
||||
}
|
||||
{
|
||||
type = "host";
|
||||
@@ -67,7 +67,7 @@
|
||||
}
|
||||
{
|
||||
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;
|
||||
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";
|
||||
listen_on = "unix:/tmp/mykitty";
|
||||
|
||||
startup_session = ./startup;
|
||||
startup_session = "${./startup}";
|
||||
|
||||
foreground = "#CDD6F4";
|
||||
background = "#080014";
|
||||
|
||||
@@ -4,6 +4,6 @@
|
||||
programs.rofi = {
|
||||
enable = true;
|
||||
|
||||
theme = ./theme.rasi;
|
||||
theme = ./tokyonight-mid.rasi;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user