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:
@@ -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"
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user