From b1cafd8f813027c42ab00442b75466d56adedd50 Mon Sep 17 00:00:00 2001 From: Magic_RB Date: Thu, 22 Jun 2023 17:19:47 +0200 Subject: [PATCH] Fix Docker DNS on toothpick Signed-off-by: Magic_RB --- nixos/systems/toothpick/nomad.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/systems/toothpick/nomad.nix b/nixos/systems/toothpick/nomad.nix index 6395b22..625fc01 100644 --- a/nixos/systems/toothpick/nomad.nix +++ b/nixos/systems/toothpick/nomad.nix @@ -127,6 +127,6 @@ virtualisation.docker.enable = true; virtualisation.docker.daemon.settings.dns = [ - (secret.network.ips.blowhole or "") + (secret.network.ips.blowhole.ip or "") ]; }