From 8bb6a8a24e31f5c4f0f47debd1e594e82568acbf Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 19 Jun 2024 02:04:46 -0400 Subject: [PATCH] system: Add groups from phone Might reduce this later. --- modules/system.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/modules/system.nix b/modules/system.nix index 089edc73..91c55087 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -131,7 +131,16 @@ in isNormalUser = true; uid = 1000; password = mkIf (hashedPassword == null && !noRoot) username; - extraGroups = if noRoot then [ ] else [ "wheel" "networkmanager" ]; + extraGroups = + if noRoot + then [ ] + else [ + "dialout" + "feedbackd" + "video" + "wheel" + "networkmanager" + ]; }; };