summary refs log tree commit diff
path: root/modules/home/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/common.nix')
-rw-r--r--modules/home/common.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/modules/home/common.nix b/modules/home/common.nix
index 4454bfc..bf2d347 100644
--- a/modules/home/common.nix
+++ b/modules/home/common.nix
@@ -4,6 +4,7 @@
   imports = [
     ../foundation/home
 
+    ./shell.nix
     ./code.nix
   ];
 
@@ -18,21 +19,11 @@
       };
       ignores = [
         # ignore most vim swap-files
-        "*~" "[._]*.sw?"
+        "*~"
+        "[._]*.sw?"
       ];
       extraConfig.init.defaultBranch = "main";
     };
-
-    fish = {
-      enable = true;
-      interactiveShellInit = ''
-        set fish_greeting
-      '';
-    };
-
-    zoxide = { enable = true; enableFishIntegration = true; };
-    starship = { enable = true; enableFishIntegration = true; };
-    direnv = { enable = true; };
   };
 
   xdg.configFile = {