diff options
author | Alan Pearce | 2023-08-22 19:10:12 +0200 |
---|---|---|
committer | Alan Pearce | 2023-08-22 19:10:12 +0200 |
commit | f8f5398d96b34adb178b9b73ee8228e78eddd329 (patch) | |
tree | 5f64f2d37ada0e7e96a74f35b91b13b7dc626171 /system/settings/programs | |
parent | 4a22fe0cf6b7c54d67dbf7c45d82fb8d7f330bbf (diff) | |
download | nixfiles-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.nix | 20 |
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; }; |