diff options
author | Alan Pearce | 2024-04-04 17:58:31 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-04 17:58:31 +0200 |
commit | bef3bae923d1db707441322c1b92c296a2691eca (patch) | |
tree | 72f9687af81e2febc9c3c2a764b524dafe588bec /system/settings/configuration | |
parent | f918810d7f4fe60185ff6b08f1496fcbb5400c7f (diff) | |
download | nixfiles-bef3bae923d1db707441322c1b92c296a2691eca.tar.lz nixfiles-bef3bae923d1db707441322c1b92c296a2691eca.tar.zst nixfiles-bef3bae923d1db707441322c1b92c296a2691eca.zip |
user: reformat groups array
Diffstat (limited to 'system/settings/configuration')
-rw-r--r-- | system/settings/configuration/user.nix | 13 |
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; |