diff options
| author | Skullheadx <admonty1@protonmail.com> | 2026-05-23 20:19:26 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@protonmail.com> | 2026-05-23 20:19:26 -0400 |
| commit | eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b (patch) | |
| tree | 8ff6bddb903d3d56bf222db03ddd31c68b8484a3 /hosts/icon/configuration.nix | |
| parent | mutli host (diff) | |
| download | nixos-eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b.tar.gz nixos-eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b.tar.bz2 nixos-eb5cea3c05ed69dc6e019cf1f97f641cd3f0625b.zip | |
add user
Diffstat (limited to '')
| -rw-r--r-- | hosts/icon/configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
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. |
