summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--system/settings/programs/shell.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/settings/programs/shell.nix b/system/settings/programs/shell.nix
index 4dd65c4a..edc39d0e 100644
--- a/system/settings/programs/shell.nix
+++ b/system/settings/programs/shell.nix
@@ -3,7 +3,8 @@
 { programs.zsh = {
     enable = true;
     promptInit = "";
-    enableGlobalCompInit = false;
-  };
+} // (if pkgs.stdenv.isDarwin then {} else {
+  enableGlobalCompInit = false;
+});
   programs.bash.enableCompletion = true;
 }