From 57f8563dd4f2a0298fa7f982ad5127e4f76312f7 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 10 Dec 2022 21:08:41 +0000 Subject: [PATCH] Add fish for main user --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index a52b6cc..481916b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -79,6 +79,10 @@ wget ]; + users.users.aaronh = { + shell = pkgs.fish; + }; + # Enable the OpenSSH daemon services.openssh.enable = true; @@ -103,6 +107,5 @@ # System system.stateVersion = "22.11"; system.autoUpgrade.enable = true; - system.autoUpgrade.allowReboot = true; }