summary refs log tree commit diff stats
path: root/system/settings/programs
diff options
context:
space:
mode:
Diffstat (limited to 'system/settings/programs')
-rw-r--r--system/settings/programs/shell.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/system/settings/programs/shell.nix b/system/settings/programs/shell.nix
index adb4cc0b..2bca33be 100644
--- a/system/settings/programs/shell.nix
+++ b/system/settings/programs/shell.nix
@@ -18,5 +18,11 @@
         enableGlobalCompInit = false;
       }
     );
-  programs.bash.enableCompletion = true;
+  environment.shells = with pkgs; [
+    zsh
+    fish
+  ];
+  programs.fish = {
+    enable = true;
+  };
 }