From 6a593fcf3f47a5cbcff14c4f1b650ffa5b3e56ab Mon Sep 17 00:00:00 2001 From: Nikolaos Karaolidis Date: Mon, 3 Mar 2025 12:48:19 +0000 Subject: [PATCH] Fix dnsmasq lack of servers Signed-off-by: Nikolaos Karaolidis --- hosts/common/configs/system/dnsmasq/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/common/configs/system/dnsmasq/default.nix b/hosts/common/configs/system/dnsmasq/default.nix index e07b22e..3dbd649 100644 --- a/hosts/common/configs/system/dnsmasq/default.nix +++ b/hosts/common/configs/system/dnsmasq/default.nix @@ -7,6 +7,11 @@ bind-interfaces = true; listen-address = [ "127.0.0.1" ]; conf-dir = "/etc/dnsmasq.d,*.conf"; + + server = [ + "1.1.1.1" + "1.0.0.1" + ]; }; };