From baa8f8c4efe8737b0351ed237fb246629bde4e3e Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sun, 11 May 2025 00:26:26 +0200 Subject: [PATCH] Fix dns on cirrus --- hosts/cirrus/hardware.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/cirrus/hardware.nix b/hosts/cirrus/hardware.nix index 82c9b02..72446a5 100644 --- a/hosts/cirrus/hardware.nix +++ b/hosts/cirrus/hardware.nix @@ -36,6 +36,12 @@ } { Gateway = "fe80::1"; } ]; + dns = [ + "1.1.1.1" + "8.8.8.8" + "2606:4700:4700::1111" + "2001:4860:4860::8888" + ]; }; }; services.resolved.enable = true;