From 17058994a864bcd25d7d93634b82d4f873ab8d83 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Wed, 21 Jun 2023 19:28:34 +0200 Subject: [PATCH] libvirt --- nixos/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 58aa414..b355c29 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -139,7 +139,7 @@ openssh.authorizedKeys.keys = [ # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect ]; - extraGroups = [ "wheel" "networkmanager" "audio" ]; + extraGroups = [ "wheel" "networkmanager" "audio" "libvirtd" ]; # TODO: This is mostly temporary until home-manager works nicely packages = with pkgs; [ firefox @@ -182,6 +182,7 @@ }).run # Wine for 32 and 64 bit applications wineWowPackages.stable + virt-manager ]; # Some programs need SUID wrappers, can be configured further or are @@ -210,6 +211,7 @@ enableExtensionPack = true; }; }; + libvirtd.enable = true; };