From 9d160faab0258a28f769abdb0d64dcb036e8e905 Mon Sep 17 00:00:00 2001 From: ene Date: Thu, 6 Apr 2023 17:59:52 +0200 Subject: Fix(system/users): Actually create plugdev group --- system/users/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'system') 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 ]; -- cgit 1.4.1