From 717736993c433c4b504702e0510ba2d97edcde62 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Wed, 28 Feb 2024 20:56:42 -0800 Subject: [PATCH] fish.nix --- home.nix | 1 + home/modules/fish.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 ; }; }