aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/podman/default.nix
blob: 1ec3406f3c25410c79629599ec55a44d05ee0b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ ... }:
{
  virtualisation = {
    containers.enable = true;
    oci-containers.backend = "podman";
    podman = {
      enable = true;
      dockerCompat = true;
      defaultNetwork.settings.dns_enabled = true;
    };
  };
}