26 lines
362 B
Nix
26 lines
362 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
|
|
virtualisation.libvirtd = {
|
|
enable = true;
|
|
qemu = {
|
|
ovmf.enable = true;
|
|
swtpm.enable = true;
|
|
};
|
|
};
|
|
|
|
programs.virt-manager.enable = true;
|
|
|
|
users.users.river.extraGroups = [
|
|
"libvirtd"
|
|
"kvm"
|
|
];
|
|
|
|
boot.kernelModules = [
|
|
"kvm-intel"
|
|
"kvm-amd"
|
|
];
|
|
}
|