nix-config/modules/podman/default.nix

13 lines
228 B
Nix
Raw Normal View History

2024-11-10 17:54:08 -05:00
{ ... }:
{
virtualisation = {
containers.enable = true;
2024-11-12 18:30:19 -05:00
oci-containers.backend = "podman";
2024-11-10 17:54:08 -05:00
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}