nix-config/hosts/common/optional/docker.nix

14 lines
209 B
Nix
Raw Normal View History

2023-12-24 11:16:59 +01:00
{
virtualisation.docker = {
enable = true;
2024-11-08 20:47:35 +01:00
daemon.settings = {
"default-address-pools" = [
{
"base" = "172.29.0.0/16";
"size" = 24;
}
];
};
2023-12-24 11:16:59 +01:00
};
}