Add private/tailscale domains to nexus
This commit is contained in:
parent
7bdae87de3
commit
68c8052e0c
|
@ -143,11 +143,26 @@ let
|
||||||
"If this is a NAT site, this should point to the host acting as network gateway.";
|
"If this is a NAT site, this should point to the host acting as network gateway.";
|
||||||
default = null;
|
default = null;
|
||||||
};
|
};
|
||||||
|
nexus = {
|
||||||
|
public-domains = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
description = "Nexus domains to which hosts in this domain belong.";
|
||||||
|
default = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
nexus.domains = mkOption {
|
private-domains = mkOption {
|
||||||
type = listOf str;
|
type = listOf str;
|
||||||
description = "Nexus domains to which hosts at this site belong.";
|
description =
|
||||||
default = [ ];
|
"Nexus private domains to which hosts in this domain belong.";
|
||||||
|
default = [ ];
|
||||||
|
};
|
||||||
|
|
||||||
|
tailscale-domains = mkOption {
|
||||||
|
type = listOf str;
|
||||||
|
description =
|
||||||
|
"Nexus tailscale domains to which hosts in this domain belong.";
|
||||||
|
default = [ ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue