Enable software tpm for libvirt

This commit is contained in:
JuliusFreudenberger 2026-01-02 19:52:36 +01:00
parent 7574b6bfa4
commit f772e6054e

View file

@ -3,12 +3,13 @@
lib, lib,
... ...
}: { }: {
environment.systemPackages = with pkgs; [
virt-manager
];
virtualisation = { virtualisation = {
libvirtd.enable = true; libvirtd = {
enable = true;
qemu.swtpm.enable = true;
};
spiceUSBRedirection.enable = true; spiceUSBRedirection.enable = true;
}; };
programs.virt-manager.enable = true;
} }