ops/nixos: don't announce QuadV net everywhere by default
This commit is contained in:
parent
5f0326b484
commit
da0717b02c
1 changed files with 2 additions and 2 deletions
|
@ -176,12 +176,12 @@ in {
|
|||
});
|
||||
};
|
||||
export = mkOption { # lukegbgp.config.export
|
||||
default = { v4 = ["92.118.31.0/24"]; v6 = ["2a09:a440::/48"]; };
|
||||
default = { v4 = []; v6 = ["2a09:a440::/48"]; };
|
||||
type = submodule {
|
||||
options = {
|
||||
v4 = mkOption { # lukegbgp.config.export.v4
|
||||
type = listOf str;
|
||||
default = ["92.118.31.0/24"];
|
||||
default = [];
|
||||
};
|
||||
v4Extra = mkOption { #lukegbgp.config.export.v4Extra
|
||||
type = lines;
|
||||
|
|
Loading…
Reference in a new issue