Remove split DNS module and per-service entries

Removed the split-dns.nix module and all service-specific splitDNS.entries
configurations. Service DNS records are now sourced from the centralized
shared/services.nix file instead of being declared individually in each
service configuration.
This commit is contained in:
William 2025-11-08 21:35:33 -03:00
parent af444584d0
commit 8d8847e2fb
5 changed files with 0 additions and 64 deletions

View file

@ -1,28 +0,0 @@
{ config, lib, ... }:
{
options.services.splitDNS = {
entries = lib.mkOption {
type = lib.types.listOf (
lib.types.submodule {
options = {
domain = lib.mkOption {
type = lib.types.str;
description = "The domain name to configure";
};
lanIP = lib.mkOption {
type = lib.types.str;
description = "IP address to return for LAN requests";
};
tailscaleIP = lib.mkOption {
type = lib.types.str;
description = "IP address to return for Tailscale requests";
};
};
}
);
default = [ ];
description = "List of domains to configure for split DNS";
};
};
}