summaryrefslogtreecommitdiff
path: root/modules/root/normaluser.nix
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-04-13 14:04:57 -0500
committerTim Keller <tjkeller.xyz>2025-04-13 14:04:57 -0500
commit3e2439bd1592897ad9f403700cb91ccfd1972779 (patch)
tree71def5f8e2eeb651e4d1d8350f52d4ac2aa75894 /modules/root/normaluser.nix
parent5a80b4611f2d49266b28e798e303957703304e18 (diff)
downloadnixos-3e2439bd1592897ad9f403700cb91ccfd1972779.tar.xz
nixos-3e2439bd1592897ad9f403700cb91ccfd1972779.zip
fix backlight control
Diffstat (limited to 'modules/root/normaluser.nix')
-rw-r--r--modules/root/normaluser.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/root/normaluser.nix b/modules/root/normaluser.nix
index fc243ea..b4be0cc 100644
--- a/modules/root/normaluser.nix
+++ b/modules/root/normaluser.nix
@@ -7,6 +7,11 @@
#home = userDetails.home.root;
isNormalUser = true;
hashedPasswordFile = config.sops.secrets.hashed-root-password.path;
- extraGroups = [ "wheel" "nixbld" ];
+ extraGroups = [
+ "i2c"
+ "nixbld"
+ "video"
+ "wheel"
+ ];
};
}