nix-config/hosts/common/optional/docker.nix
2024-11-08 20:47:35 +01:00

13 lines
209 B
Nix

{
virtualisation.docker = {
enable = true;
daemon.settings = {
"default-address-pools" = [
{
"base" = "172.29.0.0/16";
"size" = 24;
}
];
};
};
}