vade: route mcp.metacircular.net zone to rift via resolved

Link-level DNS from DHCP and Tailscale takes priority over global
nameservers in systemd-resolved. Use domain routing (~mcp.metacircular.net)
so resolved sends only internal zone queries to rift's CoreDNS.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-25 19:22:35 -07:00
parent 0268a0c721
commit 73be02eaae

View File

@@ -39,9 +39,14 @@
'' ''
]; ];
# Use rift's CoreDNS (MCNS precursor) for internal service resolution. # Route internal Metacircular zones to rift's CoreDNS (MCNS precursor).
# Uses systemd-resolved domain routing so rift handles only *.mcp.metacircular.net
# while DHCP/Tailscale DNS handles everything else.
networking.nameservers = [ networking.nameservers = [
"192.168.88.181" "192.168.88.181"
"100.95.252.120" "100.95.252.120"
]; ];
services.resolved.domains = [
"~mcp.metacircular.net"
];
} }