diff --git a/common/default.nix b/common/default.nix index 6b78942..2517156 100644 --- a/common/default.nix +++ b/common/default.nix @@ -3,7 +3,9 @@ ./base-graphical ./base-server ./users + ./boot.nix + ./docker.nix ./gpg.nix ./home-manager.nix ./misc.nix diff --git a/common/docker.nix b/common/docker.nix new file mode 100644 index 0000000..c33c246 --- /dev/null +++ b/common/docker.nix @@ -0,0 +1,11 @@ +{ config, lib, pkgs, ... }: + +{ + virtualisation.docker.daemon.settings = { + userland-proxy = false; + experimental = true; + metrics-addr = "0.0.0.0:9323"; + ipv6 = true; + fixed-cidr-v6 = "fd00::/80"; + }; +}