Shell: make compatible with darwin
Alan Pearce alan@alanpearce.eu
Fri, 13 Mar 2020 14:35:52 +0100
1 files changed, 3 insertions(+), 2 deletions(-)
M system/settings/programs/shell.nix → 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; }