From 37cf349f0b0c455172dfbf0337010eb3e0fe983f Mon Sep 17 00:00:00 2001 From: xunuwu Date: Mon, 7 Jul 2025 10:51:06 +0200 Subject: [PATCH 1/2] update elixir --- home/develop/langs/elixir.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/develop/langs/elixir.nix b/home/develop/langs/elixir.nix index d2ac19f..038edd8 100644 --- a/home/develop/langs/elixir.nix +++ b/home/develop/langs/elixir.nix @@ -1,5 +1,5 @@ {pkgs, ...}: { home.packages = with pkgs; [ - elixir_1_17 + elixir_1_18 ]; } From cfaf5bfcf1e89121cd0f08311ea67ac087b54588 Mon Sep 17 00:00:00 2001 From: xunuwu Date: Thu, 17 Jul 2025 11:04:00 +0200 Subject: [PATCH 2/2] 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;