From b359ec86441eea4791d5f6cb210026d77f514d70 Mon Sep 17 00:00:00 2001 From: yuri Date: Mon, 18 Sep 2023 02:40:09 +0200 Subject: [PATCH] Use host resolv.conf in container --- config/hosts/valkyrie/containers/uptime-kuma/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/hosts/valkyrie/containers/uptime-kuma/default.nix b/config/hosts/valkyrie/containers/uptime-kuma/default.nix index 2939abd..78d3437 100644 --- a/config/hosts/valkyrie/containers/uptime-kuma/default.nix +++ b/config/hosts/valkyrie/containers/uptime-kuma/default.nix @@ -4,6 +4,8 @@ nixpkgs = nixpkgs-unstable; autoStart = true; config = { ... }: { + networking.useHostResolvConf = true; + services.uptime-kuma = { enable = true; };