summary refs log tree commit diff stats
path: root/system/settings/programs
diff options
context:
space:
mode:
authorAlan Pearce2023-08-22 19:10:12 +0200
committerAlan Pearce2023-08-22 19:10:12 +0200
commitf8f5398d96b34adb178b9b73ee8228e78eddd329 (patch)
tree5f64f2d37ada0e7e96a74f35b91b13b7dc626171 /system/settings/programs
parent4a22fe0cf6b7c54d67dbf7c45d82fb8d7f330bbf (diff)
downloadnixfiles-f8f5398d96b34adb178b9b73ee8228e78eddd329.tar.lz
nixfiles-f8f5398d96b34adb178b9b73ee8228e78eddd329.tar.zst
nixfiles-f8f5398d96b34adb178b9b73ee8228e78eddd329.zip
Remove zsh config
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;
   };