{ config, lib, ... }: let cfg = config.custom.locations; in { options.custom.locations = { autoServe = lib.mkOption { default = false; type = lib.types.bool; }; locations = lib.mkOption { default = { services = { downloads = "tywin.storage.ts.hillion.co.uk"; gitea = "jorah.cx.ts.hillion.co.uk"; homeassistant = "microserver.home.ts.hillion.co.uk"; mastodon = ""; matrix = "jorah.cx.ts.hillion.co.uk"; unifi = "jorah.cx.ts.hillion.co.uk"; }; }; }; }; config = lib.mkIf cfg.autoServe { custom.services.downloads.enable = cfg.locations.services.downloads == config.networking.fqdn; custom.services.gitea.enable = cfg.locations.services.gitea == config.networking.fqdn; custom.services.homeassistant.enable = cfg.locations.services.homeassistant == config.networking.fqdn; custom.services.mastodon.enable = cfg.locations.services.mastodon == config.networking.fqdn; custom.services.matrix.enable = cfg.locations.services.matrix == config.networking.fqdn; custom.services.unifi.enable = cfg.locations.services.unifi == config.networking.fqdn; }; }