From cfaf5bfcf1e89121cd0f08311ea67ac087b54588 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Thu, 17 Jul 2025 11:04:00 +0200 Subject: [PATCH] start dnsmasq after tailscale --- hosts/hopper/profiles/lab/dnsmasq.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/hopper/profiles/lab/dnsmasq.nix b/hosts/hopper/profiles/lab/dnsmasq.nix index b95423a..e467698 100644 --- a/hosts/hopper/profiles/lab/dnsmasq.nix +++ b/hosts/hopper/profiles/lab/dnsmasq.nix @@ -3,6 +3,8 @@ lib, ... }: { + systemd.services.dnsmasq.serviceConfig.after = ["tailscale"]; + services.dnsmasq = { enable = true; resolveLocalQueries = false;