nix-config/modules/virtualization.nix

18 lines
281 B
Nix

{
pkgs,
lib,
...
}: {
virtualisation = {
libvirtd = {
enable = true;
qemu = {
swtpm.enable = true;
vhostUserPackages = [ pkgs.virtiofsd ];
};
};
spiceUSBRedirection.enable = true;
};
programs.virt-manager.enable = true;
}