diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-11-07 09:45:24 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-11-07 09:45:24 +0100 |
| commit | bb8c24bcd999dbeb7144a71e7430c2d39c496abf (patch) | |
| tree | 405561be7dc877723845a0551d58fb5ab56ef906 /common/users.nix | |
| parent | 8ff46b7c5e09dde2e2bfa97ded4c39d20e621e70 (diff) | |
small updates
Diffstat (limited to 'common/users.nix')
| -rw-r--r-- | common/users.nix | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/common/users.nix b/common/users.nix index a0bafe5..6d0fa88 100644 --- a/common/users.nix +++ b/common/users.nix @@ -1,12 +1,13 @@ { pkgs, ... }: { - users.n8 = { - isNormalUser = true; - extraGroups = [ - "wheel" - "networkmanager" - "ydotool" - ]; - shell = pkgs.zsh; - }; + users.n8 = { + isNormalUser = true; + extraGroups = [ + "wheel" + "networkmanager" + "ydotool" + "libvirtd" + ]; + shell = pkgs.zsh; + }; } |