Two changes to the control server, plus the fallout on the hosts. OIDC via Authentik, so `tailscale up --login-server ...` opens a browser instead of needing a pre-auth key. This is a second Authentik application, separate from headplane's, with headscale's own /oidc/callback redirect. Headless hosts keep using pre-auth keys. Note that headscale runs OIDC discovery at startup and a failure is FATAL -- pointing `issuer` at an application that does not exist yet means the control server will not boot, so verify the discovery document before deploying. override_local_dns = false, because the upstream default of true replaces resolv.conf with 100.100.100.100 on every node. That silently broke the LAN's `.sol` names -- pihole serves those and the global nameservers return NXDOMAIN for them -- and took ad blocking down with them. It also made each node's entire DNS depend on tailscaled, which is what had forced --accept-dns=false onto neptun and mercury individually; both of those workarounds are now removed, and with MagicDNS resolving properly again neptun no longer needs its hardcoded /etc/hosts pin for jupiter. Also serves jellyfin and seerr from jupiter, matching the ports they already use on its LAN vhosts, and rotates the tailnet pre-auth keys. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
46 lines
2.2 KiB
Nix
46 lines
2.2 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
# mercury — Raspberry Pi 3B+ (aarch64). Network DNS + DHCP (+ adblock).
|
|
# Boots from an SD image (see flake: nixosConfigurations.mercury), so there is
|
|
# no disko / hardware-configuration here — the sd-image module provides them.
|
|
{
|
|
imports = [
|
|
../../common.nix # shared base: user / ssh / nix / firewall
|
|
./secrets.nix # sops-nix: darman password (age key on boot part.)
|
|
../../services/network/unbound.nix # local recursive resolver (127.0.0.1:5335)
|
|
../../services/network/pihole.nix # DNS adblock + DHCP (declarative static leases)
|
|
../../services/vpn/tailscale.nix # tailnet node (headscale on neptun)
|
|
];
|
|
|
|
networking.hostName = "mercury";
|
|
|
|
# ---- Static networking ----
|
|
# A DNS/DHCP server must have a fixed address. Fill in the Pi's real values
|
|
# (from `ip -brief a` / `ip route` on the running Pi). eth0 = the Pi's NIC.
|
|
networking.useDHCP = false;
|
|
networking.usePredictableInterfaceNames = false; # keep it named eth0
|
|
networking.interfaces.eth0.ipv4.addresses = [
|
|
{ address = "10.0.0.10"; prefixLength = 24; } # the Pi's current IP
|
|
];
|
|
# Stable IPv6 (FRITZ!Box ULA prefix) so mercury is a fixed IPv6 DNS target.
|
|
# SLAAC still provides the GUA + default route. Announce THIS address as the
|
|
# DNSv6 server in the FRITZ!Box so IPv6 clients resolve .sol via pihole.
|
|
networking.interfaces.eth0.ipv6.addresses = [
|
|
{ address = "fd18:df17:9078:0::10"; prefixLength = 64; }
|
|
];
|
|
networking.defaultGateway = { address = "10.0.0.1"; interface = "eth0"; };
|
|
networking.nameservers = [ "1.1.1.1" "9.9.9.9" ];
|
|
|
|
# ---- pihole web admin password (from sops) ----
|
|
# The pihole container reads FTLCONF_* env vars. Render an env file from the
|
|
# sops secret and feed it to the container — password stays out of repo/store.
|
|
sops.secrets.pihole_webpassword = { };
|
|
sops.templates."pihole.env".content =
|
|
"FTLCONF_webserver_api_password=${config.sops.placeholder.pihole_webpassword}";
|
|
virtualisation.oci-containers.containers.pihole.environmentFiles =
|
|
[ config.sops.templates."pihole.env".path ];
|
|
|
|
# Do not modify after first flash.
|
|
system.stateVersion = "26.05";
|
|
}
|