system: Add groups from phone

Might reduce this later.
This commit is contained in:
Donovan Glover 2024-06-19 02:04:46 -04:00
parent 510ddfe9d7
commit 8bb6a8a24e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -131,7 +131,16 @@ in
isNormalUser = true; isNormalUser = true;
uid = 1000; uid = 1000;
password = mkIf (hashedPassword == null && !noRoot) username; password = mkIf (hashedPassword == null && !noRoot) username;
extraGroups = if noRoot then [ ] else [ "wheel" "networkmanager" ]; extraGroups =
if noRoot
then [ ]
else [
"dialout"
"feedbackd"
"video"
"wheel"
"networkmanager"
];
}; };
}; };