17 lines
332 B
Nix
17 lines
332 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
networking.firewall.trustedInterfaces = lib.mkAfter [ "virbr0" ];
|
|
|
|
virtualisation = {
|
|
containers.enable = true;
|
|
podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
libvirtd.enable = true;
|
|
};
|
|
|
|
programs.virt-manager.enable = true;
|
|
}
|