mini-2024-04-16-08-52-40

This commit is contained in:
Alexander Szczepanski
2024-04-16 08:52:40 +02:00
parent 3a87d53bdf
commit 56e67bd5fd
2 changed files with 14 additions and 1 deletions

View File

@ -4,7 +4,19 @@
virtualisation = { virtualisation = {
libvirtd = { libvirtd = {
enable = true; enable = true;
qemu.package = pkgs.qemu_kvm; qemu = {
package = pkgs.qemu_kvm;
swtpm.enable = true;
ovmf = {
enable = true;
packages = [
(pkgs.unstable.OVMF.override {
secureBoot = true;
tpmSupport = true;
}).fd
];
};
};
}; };
spiceUSBRedirection.enable = true; spiceUSBRedirection.enable = true;
}; };

View File

@ -18,6 +18,7 @@ in {
"docker" "docker"
"networkmanager" "networkmanager"
"libvirtd" "libvirtd"
"qemu-libvirtd"
"kvm" "kvm"
"lp" "lp"
"nginx" "nginx"