lib/config: remove ospf.networks[46]

This commit is contained in:
Astro 2021-04-30 23:37:53 +02:00
parent 268e16999f
commit 003a948ce2
2 changed files with 0 additions and 17 deletions

View File

@ -201,13 +201,4 @@ in
) (builtins.attrNames pillar.hosts-inet6.${ctx})
) (builtins.attrNames pillar.hosts-inet6))
);
config.site.ospf = {
networks4 = [ "172.20.72.0/21" ];
networks6 = [
"fd23:42:c3d2:500::/56"
"2a02:8106:208:5200::/56"
"2a02:8106:211:e900::/56"
];
};
}

View File

@ -276,14 +276,6 @@ in
default = {};
type = with types; attrsOf (submodule hostOpts);
};
ospf.networks4 = mkOption {
default = [];
type = with types; listOf str;
};
ospf.networks6 = mkOption {
default = [];
type = with types; listOf str;
};
};
config.warnings =