Add public/tailscale domain types for nexus

This commit is contained in:
niten 2024-05-11 13:58:17 -07:00
parent e6109489d4
commit 7bdae87de3
1 changed files with 20 additions and 4 deletions

View File

@ -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 = [ ];
};
};
};
};