nix-configurations/hosts/m3-nix/services/virtualization.nix

20 lines
356 B
Nix
Raw Normal View History

2023-06-27 10:35:30 +00:00
{ pkgs, ... }: {
virtualisation = {
libvirtd = {
enable = true;
qemu = {
swtpm.enable = true;
ovmf = {
enable = true;
packages = [ pkgs.OVMFFull ];
};
};
};
podman = {
enable = true;
enableNvidia = true;
defaultNetwork.settings.dns_enabled = true;
};
2022-12-31 12:07:15 +00:00
};
}