about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-04-06 17:04:59 +0200
committerene <ene@sils.li>2023-04-06 17:04:59 +0200
commit42265ddf945ea8275af1ca8d8a072597a54697e9 (patch)
treec659b0e7bc9b312480189e56dc3b441b4f3a4fe9 /system
parentFeat(hm/conf/river): Update to new version (diff)
downloadnixos-config-42265ddf945ea8275af1ca8d8a072597a54697e9.tar.gz
nixos-config-42265ddf945ea8275af1ca8d8a072597a54697e9.zip
Feat(system/user): Add soispha to plugdev group
The plugdev group has silently been deprecated and is replaced with
better alternatives, but this rule-set was probably missed, when other
were patched. Opening an issue is obviously the long-term solution, but
this should work for now.
Diffstat (limited to 'system')
-rw-r--r--system/users/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/users/default.nix b/system/users/default.nix
index f68c35d3..98dde343 100644
--- a/system/users/default.nix
+++ b/system/users/default.nix
@@ -29,6 +29,7 @@ in {
         shell = pkgs.zsh;
         initialHashedPassword = cfg.hashedPassword;
         extraGroups = [
+          "plugdev" # although deprecated, this helps with old udev rules, that still use this group
           "wheel"
           "networkmanager" # if I activate network-manager, this will help
         ];