summaryrefslogtreecommitdiff
path: root/services/docker.nix
blob: c45037cd39663b9b06949b22734a730bbcb59705 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, ... }:
{
  virtualisation.docker = {
    enable = true;
    autoPrune.enable = true;
    extraOptions = ''
    --dns=172.17.0.1 --iptables=false
    '';
    storageDriver = "btrfs";
  };
}