From aeb3e4b244ff79f9658c97d379cb932f7f7563ce Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sun, 6 Jul 2025 15:44:33 +0200 Subject: [PATCH] feat: kvm group --- modules/nixos/main-user.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/main-user.nix b/modules/nixos/main-user.nix index 223f484..b653198 100644 --- a/modules/nixos/main-user.nix +++ b/modules/nixos/main-user.nix @@ -23,7 +23,7 @@ in { users.users.${cfg.username} = { isNormalUser = true; initialPassword = "12345"; - extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers" "libvirtd" "wireshark"]; + extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers" "libvirtd" "wireshark" "kvm"]; description = "Stefan"; shell = pkgs.zsh; };