config/profiles/podman.nix

12 lines
402 B
Nix
Raw Normal View History

2023-07-04 23:44:08 +02:00
{
virtualisation.podman.enable = true;
virtualisation.podman.dockerCompat = true; # alias docker to podman
virtualisation.oci-containers.backend = "podman"; # default
# Required for containers under podman-compose to be able to talk to each other.
#virtualisation.defaultNetwork.settings.dns_enabled = true;
# TODO: if root-on-zfs
#virtualisation.podman.extraPackages = [ pkgs.zfs ];
}