From a026867c03c91cde29500544f7ffe4343c4c55b0 Mon Sep 17 00:00:00 2001 From: Lukas Wurzinger Date: Sun, 8 Jun 2025 19:35:48 +0200 Subject: [PATCH] fix --- flake.lock | 30 +++++++++++++++--------------- hosts/abacus/headscale.nix | 10 +++++++++- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/flake.lock b/flake.lock index c827cde..d017500 100644 --- a/flake.lock +++ b/flake.lock @@ -143,11 +143,11 @@ "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1748821116, - "narHash": "sha256-F82+gS044J1APL0n4hH50GYdPRv/5JWm34oCJYmVKdE=", + "lastModified": 1749398372, + "narHash": "sha256-tYBdgS56eXYaWVW3fsnPQ/nFlgWi/Z2Ymhyu21zVM98=", "owner": "hercules-ci", "repo": "flake-parts", - "rev": "49f0870db23e8c1ca0b5259734a02cd9e1e371a1", + "rev": "9305fe4e5c2a6fcf5ba6a3ff155720fbe4076569", "type": "github" }, "original": { @@ -547,11 +547,11 @@ ] }, "locked": { - "lastModified": 1748751003, - "narHash": "sha256-i4GZdKAK97S0ZMU3w4fqgEJr0cVywzqjugt2qZPrScs=", + "lastModified": 1749355504, + "narHash": "sha256-L17CdJMD+/FCBOHjREQLXbe2VUnc3rjffenBbu2Kwpc=", "owner": "nix-community", "repo": "nix-index-database", - "rev": "2860bee699248d828c2ed9097a1cd82c2f991b43", + "rev": "40a6e15e44b11fbf8f2b1df9d64dbfc117625e94", "type": "github" }, "original": { @@ -568,11 +568,11 @@ "rust-overlay": "rust-overlay_2" }, "locked": { - "lastModified": 1749252229, - "narHash": "sha256-zIXU2Z+OBmkI+qjryUtVILP6qgZo+0bnIEy3UAw0CAE=", + "lastModified": 1749338348, + "narHash": "sha256-IBLKyOU55Kt1gSXL4dFQUQUVcYd5+qfSrVAL8lcE8QY=", "owner": "lilyinstarlight", "repo": "nixos-cosmic", - "rev": "821627b7fe15013554cab4e9db4b8cb6fa9e8baf", + "rev": "f2ac592313c51c9be981e45f56dc00714e103477", "type": "github" }, "original": { @@ -817,11 +817,11 @@ }, "nixpkgs_8": { "locked": { - "lastModified": 1748929857, - "narHash": "sha256-lcZQ8RhsmhsK8u7LIFsJhsLh/pzR9yZ8yqpTzyGdj+Q=", + "lastModified": 1749143949, + "narHash": "sha256-QuUtALJpVrPnPeozlUG/y+oIMSLdptHxb3GK6cpSVhA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "c2a03962b8e24e669fb37b7df10e7c79531ff1a4", + "rev": "d3d2d80a2191a73d1e86456a751b83aa13085d7d", "type": "github" }, "original": { @@ -978,11 +978,11 @@ ] }, "locked": { - "lastModified": 1749177458, - "narHash": "sha256-9HNq3EHZIvvxXQyEn0sYOywcESF1Xqw2Q8J1ZewcXuk=", + "lastModified": 1749263796, + "narHash": "sha256-m52UsUrcNjAzgc0cwcg94INkiFyVPTn6KbFGr4x4cu8=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "d58933b88cef7a05e9677e94352fd6fedba402cd", + "rev": "6e1d910306edfe6e4b718878f222c5672500d6b2", "type": "github" }, "original": { diff --git a/hosts/abacus/headscale.nix b/hosts/abacus/headscale.nix index 4009020..ef08b0f 100644 --- a/hosts/abacus/headscale.nix +++ b/hosts/abacus/headscale.nix @@ -9,7 +9,15 @@ in port = 8010; settings = { server_url = "https://${virtualHostName}"; - dns.base_domain = "tailnet.helveticanonstandard.net"; + dns = { + base_domain = "tailnet.helveticanonstandard.net"; + nameservers.global = [ + "1.1.1.1" + "1.0.0.1" + "2606:4700:4700::1111" + "2606:4700:4700::1001" + ]; + }; logtail.enabled = false; }; };