From e9f8ac29aa2e1793645fe172e66bf9661dcf8879 Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Fri, 20 Dec 2024 21:10:56 +0200 Subject: [PATCH] add some stupid logic because the pihole is throwing a tantrum over its port being taken (bc it's the dns port, ugh) --- cluster/virtualisation.mod.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/virtualisation.mod.nix b/cluster/virtualisation.mod.nix index 5329782..55dcd1b 100644 --- a/cluster/virtualisation.mod.nix +++ b/cluster/virtualisation.mod.nix @@ -15,7 +15,7 @@ podman = { enable = true; dockerCompat = false; - defaultNetwork.settings.dns_enabled = true; + defaultNetwork.settings.dns_enabled = (config.networking.hostName == "glucose"); }; oci-containers.backend = "podman"; };