something working!

This commit is contained in:
Jet Pham 2024-03-22 23:47:02 -07:00
parent 03985749c6
commit 0a759878ec
4 changed files with 6 additions and 5 deletions

View file

@ -7,12 +7,13 @@
./firefox ./firefox
./eww ./eww
./dunst ./dunst
./kitty
./hyprland ./hyprland
./wofi ./wofi
# cli # cli
./nvim ./nvim
./zsh ./nushell
./git ./git
./direnv ./direnv

View file

@ -89,7 +89,7 @@ in {
}; };
# userChome.css to make it look better # userChome.css to make it look better
userChrome = buildins.readFile ./userChrome.css; userChrome = builtins.readFile ./userChrome.css;
}; };
}; };
}; };

View file

@ -8,7 +8,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
programs.kitty = { programs.kitty = {
enable = true; enable = true;
extraConfig = buildins.readFile ./kitty.conf; extraConfig = builtins.readFile ./kitty.conf;
}; };
}; };
} }

View file

@ -10,7 +10,7 @@ in {
enable = true; enable = true;
configFile.source = ./config.nu; configFile.source = ./config.nu;
envFile.source = ./env.nu; envFile.source = ./env.nu;
extraConfig = buildins.readFile ./extra.nu; extraConfig = builtins.readFile ./extra.nu;
} };
}; };
} }