nixcfg/hosts/focalor/vfio.nix
2025-06-11 01:13:48 -04:00

19 lines
No EOL
430 B
Nix

programs.virt-manager.enable = true;
virtualisation.spiceUSBRedirection.enable = true;
virtualisation.libvirtd = {
enable = true;
qemu = {
package = pkgs.qemu_kvm;
runAsRoot = true;
swtpm.enable = true;
ovmf = {
enable = true;
packages = [(pkgs.OVMF.override {
secureBoot = true;
tpmSupport = true;
}).fd];
};
};
};
users.extraUsers.regent.extraGroups = [ "libvirtd" ];