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