all repos — nixfiles @ ed692b6bfe0bef5769ce202cd690e5e35718ceee

System and user configuration, managed by nix and home-manager

shell: enable fish

Alan Pearce
commit

ed692b6bfe0bef5769ce202cd690e5e35718ceee

parent

7f3e574437879f97ca606b29f7a914bc04f32fbb

1 file changed, 7 insertions(+), 1 deletion(-)

jump to
M system/settings/programs/shell.nixsystem/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; + }; }