summaryrefslogtreecommitdiff
path: root/common/users.nix
diff options
context:
space:
mode:
Diffstat (limited to 'common/users.nix')
-rw-r--r--common/users.nix19
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;
+ };
}