New structure since I kept struggling with the home-manager implemnentation

This commit is contained in:
2026-03-18 15:27:35 +00:00
parent b4ef4450bf
commit 947603b6f5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -269,7 +269,7 @@ in
# Ensure the user is in the necessary groups
users.users.${config.users.users.${user.username}.username} = {
extraGroups = [ "wheel", "networkmanager" ];
extraGroups = [ "wheel" "networkmanager" ];
}
#+END_SRC
@@ -18,5 +18,5 @@ in
# Ensure the user is in the necessary groups
users.users.${config.users.users.${user.username}.username} = {
extraGroups = [ "wheel", "networkmanager" ];
extraGroups = [ "wheel" "networkmanager" ];
}