nixos-config/hosts/thinkpad/modules/virtualisation/default.nix
2024-03-12 17:09:02 +01:00

24 lines
558 B
Nix

{ pkgs, ... }:
{
virtualisation = {
docker.enable = true;
libvirtd = {
enable = true;
qemu = {
runAsRoot = false;
swtpm.enable = true;
ovmf.packages = [
(pkgs.OVMF.override ({ tpmSupport = true; secureBoot = true; })).fd
];
};
};
spiceUSBRedirection.enable = true;
};
# allow libvirts internal network stuff
networking.firewall.trustedInterfaces = [ "virbr0" "br0" ];
programs.virt-manager.enable = true;
environment.systemPackages = with pkgs; [
virt-viewer
];
}