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 4101d1c566
commit 64a4a03e08

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 {