summaryrefslogtreecommitdiff
path: root/modules/server/virtualisation/docker.nix
blob: e2edf2139ebe0590bc35fc1bfa2918e9b1405f0e (plain) (blame)
1
2
3
4
5
6
7
{ config, ... }:
{
  virtualisation.docker = {
    enable = config.modules.server.containerEngine == "docker";
    daemon.settings.iptables = false;
  };
}