{ config, lib, pkgs, ... }: { config = lib.mkIf config.virtualisation.libvirtd.enable { virtualisation.libvirtd = { onBoot = "ignore"; onShutdown = "shutdown"; qemu = { ovmf = { enable = true; packages = with pkgs; [ OVMFFull.fd ]; }; vhostUserPackages = with pkgs; [ virtiofsd ]; swtpm.enable = true; }; }; programs.virt-manager.enable = true; networking.firewall.trustedInterfaces = [ "virbr0" "virbr1" ]; systemd.tmpfiles.rules = [ "f /dev/shm/looking-glass 0660 - libvirtd -" ]; environment.persistence."/persist".directories = [ "/var/lib/libvirt" ]; }; }