Add public/tailscale domain types for nexus
This commit is contained in:
parent
e6109489d4
commit
7bdae87de3
|
@ -187,10 +187,26 @@ let
|
|||
default = null;
|
||||
};
|
||||
|
||||
nexus.domains = mkOption {
|
||||
type = listOf str;
|
||||
description = "Nexus domains to which hosts in this domain belong.";
|
||||
default = [ ];
|
||||
nexus = {
|
||||
public-domains = mkOption {
|
||||
type = listOf str;
|
||||
description = "Nexus domains to which hosts in this domain belong.";
|
||||
default = [ ];
|
||||
};
|
||||
|
||||
private-domains = mkOption {
|
||||
type = listOf str;
|
||||
description =
|
||||
"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