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.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/system/settings/programs/shell.nix b/system/settings/programs/shell.nix
index 3c8c3f4f..87372033 100644
--- a/system/settings/programs/shell.nix
+++ b/system/settings/programs/shell.nix
@@ -2,26 +2,6 @@
 , pkgs
 , ...
 }: {
-  programs.zsh =
-    {
-      enable = true;
-      enableBashCompletion = true;
-      promptInit = "";
-    }
-    // (
-      # Either of these will call `compinit`, causing >2s startup time
-      # Do it in home-manager instead
-      if pkgs.stdenv.isDarwin
-      then {
-        enableCompletion = false;
-      } else {
-        enableGlobalCompInit = false;
-      }
-    );
-  environment.shells = with pkgs; [
-    zsh
-    fish
-  ];
   programs.fish = {
     enable = true;
   };