nix-config/modules/podman/default.nix

15 lines
230 B
Nix
Raw Normal View History

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