clan.static-hosts: excludeHosts should be empty if topLevelDomain is defined.

This commit is contained in:
Ingolf Wagner 2024-06-02 20:57:15 +02:00 committed by kenji
parent 8089b87bbb
commit f6fb52afbf

View File

@ -3,7 +3,8 @@
options.clan.static-hosts = {
excludeHosts = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ config.clanCore.machineName ];
default =
if config.clan.static-hosts.topLevelDomain != "" then [ ] else [ config.clanCore.machineName ];
description = "Hosts that should be excluded";
};
topLevelDomain = lib.mkOption {