shell: enable fish
1 file changed, 7 insertions(+), 1 deletion(-)
M system/settings/programs/shell.nix → system/settings/programs/shell.nix
@@ -18,5 +18,11 @@ } else { enableGlobalCompInit = false; } ); - programs.bash.enableCompletion = true; + environment.shells = with pkgs; [ + zsh + fish + ]; + programs.fish = { + enable = true; + }; }