From 6414dda04f42eec2e8c2fc846ee1134936e4d35c Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Wed, 29 Mar 2023 21:08:55 -0400 Subject: [PATCH] Set shell on darwin --- machines/extremophile/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/extremophile/configuration.nix b/machines/extremophile/configuration.nix index 96dbde4..8819807 100644 --- a/machines/extremophile/configuration.nix +++ b/machines/extremophile/configuration.nix @@ -3,6 +3,8 @@ { # Setup system configuration nathan = { config = { isDesktop = true; }; }; + # Configure the login shell + users.users."nathan".shell = pkgs.fish; # Setup home manager home-manager.users.nathan = import ./home.nix; # Configure nix build