virt-manager

This commit is contained in:
KnightArtorias 2026-02-09 21:07:30 +00:00
parent 39946c6953
commit f8c5683aba
2 changed files with 28 additions and 0 deletions

View file

@ -3,5 +3,6 @@
./steam.nix
./pwvucontrol.nix
./wine.nix
./virt-manager.nix
];
}

View file

@ -0,0 +1,27 @@
{ pkgs, vars, ... }:
{
environment.systemPackages = with pkgs; [
virt-manager
virt-viewer
spice
spice-gtk
spice-protocol
];
programs.dconf.enable = true;
programs.virt-manager.enable = true;
virtualisation = {
libvirtd = {
enable = true;
spiceUSBRedirection.enable = true;
qemu = {
};
};
};
users.groups.libvirted.members = ["${vars.user}"];
}