Add private/tailscale domains to nexus

This commit is contained in:
niten 2024-05-11 14:33:58 -07:00
parent 7bdae87de3
commit 68c8052e0c

View File

@ -143,12 +143,27 @@ 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 = {
nexus.domains = mkOption { public-domains = mkOption {
type = listOf str; type = listOf str;
description = "Nexus domains to which hosts at this site belong."; description = "Nexus domains to which hosts in this domain belong.";
default = [ ]; 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 = [ ];
};
};
}; };
}; };