From 5f08713dfb43f9096e5e1b84685ee528446df656 Mon Sep 17 00:00:00 2001 From: Maximilien Richer Date: Sun, 16 Oct 2022 14:38:44 +0200 Subject: [PATCH] Remove additonal DNS entries from docker --- nix/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/configuration.nix b/nix/configuration.nix index 800d36d..2bb56f2 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -83,7 +83,7 @@ SystemMaxUse=1G virtualisation.docker = { enable = true; extraOptions = "--config-file=${pkgs.writeText "daemon.json" (builtins.toJSON { - dns = [ "172.17.0.1" "8.8.8.8" "8.8.4.4" ]; + dns = [ "172.17.0.1" ]; })}"; };