diff options
author | ene <ene@sils.li> | 2023-04-06 17:59:52 +0200 |
---|---|---|
committer | ene <ene@sils.li> | 2023-04-06 17:59:52 +0200 |
commit | 9d160faab0258a28f769abdb0d64dcb036e8e905 (patch) | |
tree | 3db2b6ad6d2374efe7b2c8d89a81f20bc6fd9f84 | |
parent | Fix(hm/wms/river): Set keyboard poll rate (diff) | |
download | nixos-config-9d160faab0258a28f769abdb0d64dcb036e8e905.zip |
Fix(system/users): Actually create plugdev group
Diffstat (limited to '')
-rw-r--r-- | system/users/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/system/users/default.nix b/system/users/default.nix index 98dde343..89c2718a 100644 --- a/system/users/default.nix +++ b/system/users/default.nix @@ -21,6 +21,9 @@ in { programs.zsh.enable = true; users = { + groups = { + plugdev.members = ["soispha"]; + }; mutableUsers = false; users.soispha = { isNormalUser = true; @@ -29,7 +32,7 @@ in { shell = pkgs.zsh; initialHashedPassword = cfg.hashedPassword; extraGroups = [ - "plugdev" # although deprecated, this helps with old udev rules, that still use this group + "plugdev" # although deprecated, this helps with old udev rules, that still use this group. TODO check for an open issue "wheel" "networkmanager" # if I activate network-manager, this will help ]; |