From a444694054a164158823e2f724ba6f2e7c26e7dd Mon Sep 17 00:00:00 2001 From: servius Date: Sun, 1 Feb 2026 02:53:38 +0530 Subject: [PATCH] fix: Don't remove resolved.enable = false else it'll fuck up ssh into tsuba This is a dns issue where if we dont explicitly disable it then it conflicts with the 53 port from the pihole container and we can't ssh into the device anymore --- nixos/tsuba/services/resolved.nix | 11 +++-------- nixos/tsuba/tsuba.nix | 4 ++-- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/nixos/tsuba/services/resolved.nix b/nixos/tsuba/services/resolved.nix index dd31a22f..52a8e602 100644 --- a/nixos/tsuba/services/resolved.nix +++ b/nixos/tsuba/services/resolved.nix @@ -1,11 +1,6 @@ {...}: { - # services.resolved = { - # enable = false; - # settings = { - # Resolve = { - # FallbackDNS = []; - # }; - # }; - # }; + services.resolved = { + enable = false; + }; networking.nameservers = []; } diff --git a/nixos/tsuba/tsuba.nix b/nixos/tsuba/tsuba.nix index 928f2cdd..8e66dc37 100644 --- a/nixos/tsuba/tsuba.nix +++ b/nixos/tsuba/tsuba.nix @@ -12,10 +12,10 @@ systemd.network.wait-online.enable = false; fileSystems."/home".neededForBoot = true; - boot.loader.raspberryPi.bootloader = "kernel"; + boot.loader.raspberry-pi.bootloader = "kernel"; system.nixos.tags = let - cfg = config.boot.loader.raspberryPi; + cfg = config.boot.loader.raspberry-pi; in [ "raspberry-pi-${cfg.variant}" cfg.bootloader