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