main
Zynh Ludwig 2024-02-28 20:56:42 -08:00
parent 51104c5387
commit 717736993c
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./home/modules/git.nix ./home/modules/git.nix
./home/modules/fish.nix
]; ];
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should

View File

@ -4,7 +4,7 @@
enable = true; enable = true;
interactiveShellInit = interactiveShellInit =
builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" + builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" +
builtins.readFile ./home/fish/config.fish builtins.readFile ../fish/config.fish
; ;
}; };
} }