From 93ef034a5c24d10aa9136e8ea237964543acec56 Mon Sep 17 00:00:00 2001 From: Jarek <65668659+jardahrazdera@users.noreply.github.com> Date: Sun, 24 Aug 2025 20:22:54 +0200 Subject: [PATCH] Use Quad9 as fallback DNS for better privacy (#1046) Replace Google DNS fallback with Quad9 (9.9.9.9, 149.112.112.112) for better privacy consistency. Users choosing Cloudflare likely value privacy, so Quad9 is a more appropriate fallback than Google. As discussed in #752 and approved by @dhh in #1043. --- bin/omarchy-setup-dns | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-setup-dns b/bin/omarchy-setup-dns index ca5f03d8..119ab40b 100755 --- a/bin/omarchy-setup-dns +++ b/bin/omarchy-setup-dns @@ -11,7 +11,7 @@ Cloudflare) sudo tee /etc/systemd/resolved.conf >/dev/null <<'EOF' [Resolve] DNS=1.1.1.1#cloudflare-dns.com 1.0.0.1#cloudflare-dns.com -FallbackDNS=8.8.8.8#dns.google 8.8.4.4#dns.google +FallbackDNS=9.9.9.9 149.112.112.112 DNSOverTLS=opportunistic EOF @@ -63,7 +63,7 @@ Custom) sudo tee /etc/systemd/resolved.conf >/dev/null <