22 lines
379 B
Nix
22 lines
379 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
programs.virt-manager.enable = true;
|
||
|
}
|
||
|
|