summaryrefslogtreecommitdiff
path: root/services/docker.nix
blob: d7bf7b833857f9071e666bfb4c3c2ef8195a4764 (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";
  };
}