summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2024-04-04 17:58:31 +0200
committerAlan Pearce2024-04-04 17:58:31 +0200
commitbef3bae923d1db707441322c1b92c296a2691eca (patch)
tree72f9687af81e2febc9c3c2a764b524dafe588bec /system
parentf918810d7f4fe60185ff6b08f1496fcbb5400c7f (diff)
downloadnixfiles-bef3bae923d1db707441322c1b92c296a2691eca.tar.lz
nixfiles-bef3bae923d1db707441322c1b92c296a2691eca.tar.zst
nixfiles-bef3bae923d1db707441322c1b92c296a2691eca.zip
user: reformat groups array
Diffstat (limited to 'system')
-rw-r--r--system/settings/configuration/user.nix13
1 files changed, 12 insertions, 1 deletions
diff --git a/system/settings/configuration/user.nix b/system/settings/configuration/user.nix
index 7f753838..3a7f9620 100644
--- a/system/settings/configuration/user.nix
+++ b/system/settings/configuration/user.nix
@@ -5,7 +5,18 @@
   users.extraUsers.alan = {
     description = "Alan Pearce";
     isNormalUser = true;
-    extraGroups = [ "audio" "wheel" "lp" "adbusers" "docker" "nitrokey" "dialout" "pipewire" "networkmanager" "video" ];
+    extraGroups = [
+      "audio"
+      "wheel"
+      "lp"
+      "adbusers"
+      "docker"
+      "nitrokey"
+      "dialout"
+      "pipewire"
+      "networkmanager"
+      "video"
+    ];
     initialPassword = "password";
     home = "/home/alan";
     uid = 1000;