From e988bb4eaced3387584b1a76a349fa17b15e0f14 Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Wed, 10 Sep 2025 10:33:29 +0200 Subject: [PATCH] feat: set user shell to fish :fish: --- nixos/hosts/macos.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/hosts/macos.nix b/nixos/hosts/macos.nix index 7294561..84e4c7d 100644 --- a/nixos/hosts/macos.nix +++ b/nixos/hosts/macos.nix @@ -12,8 +12,7 @@ # Shells & dev ergonomics programs.fish.enable = true; environment.shells = [ pkgs.fish ]; - # If you want fish as default shell, uncomment: - # users.defaultUserShell = pkgs.fish; + users.users.danny.shell = pkgs.fish; programs.direnv.enable = true; programs.direnv.nix-direnv.enable = true;