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