fix orion: remove duplicate top-level networking/services attrs

The module used explicit `config = { ... }` but also had duplicate
networking.nameservers and services.resolved.domains at the top level,
causing a NixOS module evaluation error. Merged the Tailscale nameserver
into the config block and removed the duplicates.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-02 15:39:51 -07:00
parent 6a65e73200
commit 5fd00af73c

View File

@@ -24,18 +24,8 @@
networking.firewall.allowedUDPPorts = [ 53 ]; networking.firewall.allowedUDPPorts = [ 53 ];
# Route internal Metacircular zones to rift's own CoreDNS. # Route internal Metacircular zones to rift's own CoreDNS.
networking.nameservers = [ "192.168.88.181" ]; networking.nameservers = [ "192.168.88.181" "100.95.252.120" ];
services.resolved.domains = [ "~mcp.metacircular.net" ]; services.resolved.domains = [ "~mcp.metacircular.net" ];
}; };
# 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 = [
"192.168.88.181"
"100.95.252.120"
];
services.resolved.domains = [
"~mcp.metacircular.net"
];
} }