diff options
author | ene <ene@sils.li> | 2023-04-06 17:04:59 +0200 |
---|---|---|
committer | ene <ene@sils.li> | 2023-04-06 17:04:59 +0200 |
commit | 42265ddf945ea8275af1ca8d8a072597a54697e9 (patch) | |
tree | c659b0e7bc9b312480189e56dc3b441b4f3a4fe9 /system/users | |
parent | Feat(hm/conf/river): Update to new version (diff) | |
download | nixos-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/users')
-rw-r--r-- | system/users/default.nix | 1 |
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 ]; |