From 6f43ac771d216d74abc2e95efbbebc6e12f0e0c2 Mon Sep 17 00:00:00 2001 From: Andrew Date: Sat, 23 Aug 2025 11:33:33 -0400 Subject: [PATCH] change to fish as default shell --- configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.54.0