nixos-config/hosts/thinkpad/modules/virtualisation/default.nix

28 lines
638 B
Nix
Raw Normal View History

2023-12-29 19:47:57 +01:00
{ pkgs, ... }:
2023-07-03 10:19:14 +02:00
{
virtualisation = {
2024-06-22 16:27:54 +02:00
podman = {
enable = true;
defaultNetwork.settings.dns_enabled = true;
2024-03-23 00:31:32 +01:00
};
libvirtd = {
enable = true;
qemu = {
runAsRoot = false;
swtpm.enable = true;
ovmf.packages = [
2024-03-12 17:09:02 +01:00
(pkgs.OVMF.override ({ tpmSupport = true; secureBoot = true; })).fd
];
};
};
spiceUSBRedirection.enable = true;
};
# allow libvirts internal network stuff
2024-04-11 11:52:03 +02:00
networking.firewall.trustedInterfaces = [ "virbr0" ];
programs.virt-manager.enable = true;
2023-07-03 10:19:14 +02:00
environment.systemPackages = with pkgs; [
virt-viewer
2024-06-22 16:27:54 +02:00
podman-compose
2023-07-03 10:19:14 +02:00
];
}