summaryrefslogtreecommitdiff
path: root/nix/modules/docker.nix
blob: ac2c45685b02087fed64420b8c4fbbfce1aa83e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, config, vars, ... }:
{
  virtualisation = {
    oci-containers = {
      backend = "podman";
      containers = {};
    };
    containers.enable = true;
    podman = {
      enable = true;
      dockerCompat = true;
      defaultNetwork.settings.dns_enabled = true;
    };
  };
}