From: Skullheadx Date: Sun, 24 May 2026 00:19:26 +0000 (-0400) Subject: add user X-Git-Url: http://git.skullheadx.com/nixos/static/projects/suckless.html?a=commitdiff_plain;h=eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b;p=nixos.git add user --- 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.