]> Skullheadx's Git Forge - nixos.git/commitdiff
add user
authorSkullheadx <admonty1@protonmail.com>
Sun, 24 May 2026 00:19:26 +0000 (20:19 -0400)
committerSkullheadx <admonty1@protonmail.com>
Sun, 24 May 2026 00:19:26 +0000 (20:19 -0400)
hosts/icon/configuration.nix

index e80317561d3c22f816521db2267b2f787b8d5323..7a263c687738911afa01cb21517dedaf5ffc0c68 100644 (file)
@@ -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.