diff --git a/home.nix b/home.nix index fed1ed8..077b21d 100644 --- a/home.nix +++ b/home.nix @@ -3,6 +3,7 @@ { imports = [ ./home/modules/git.nix + ./home/modules/fish.nix ]; # Home Manager needs a bit of information about you and the paths it should diff --git a/home/modules/fish.nix b/home/modules/fish.nix index 35d148c..89d22f3 100644 --- a/home/modules/fish.nix +++ b/home/modules/fish.nix @@ -4,7 +4,7 @@ enable = true; interactiveShellInit = builtins.readFile "${inputs.fish_theme}/fish_prompt.fish" + "\n" + - builtins.readFile ./home/fish/config.fish + builtins.readFile ../fish/config.fish ; }; }