From eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b Mon Sep 17 00:00:00 2001 From: Skullheadx Date: Sat, 23 May 2026 20:19:26 -0400 Subject: [PATCH] add user --- hosts/icon/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/icon/configuration.nix b/hosts/icon/configuration.nix index e803175..7a263c6 100644 --- a/hosts/icon/configuration.nix +++ b/hosts/icon/configuration.nix @@ -8,6 +8,16 @@ ./hardware-configuration.nix ]; + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.andrew = { + isNormalUser = true; + + extraGroups = [ + "networkmanager" + "wheel" + ]; + packages = with pkgs; [ ]; + }; networking.hostName = "icon"; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. -- 2.54.0