From: Andrew Date: Sat, 23 Aug 2025 15:33:33 +0000 (-0400) Subject: change to fish as default shell X-Git-Url: http://git.skullheadx.com/nixos/README?a=commitdiff_plain;h=6f43ac771d216d74abc2e95efbbebc6e12f0e0c2;p=nixos.git change to fish as default shell --- diff --git a/configuration.nix b/configuration.nix index bb6bfe2..17e41c9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,9 +20,9 @@ boot.loader.efi.canTouchEfiVariables = true; # zsh - environment.shells = with pkgs; [ zsh ]; - users.defaultUserShell = pkgs.zsh; - programs.zsh.enable = true; + environment.shells = with pkgs; [ fish ]; + users.defaultUserShell = pkgs.fish; + programs.fish.enable = true; # Use latest kernel. boot.kernelPackages = pkgs.linuxPackages_latest;