From 75ebd1d3ea70033ad6307ec19f900b4df104e582 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 18 Sep 2022 22:28:34 +0200 Subject: [PATCH] lib/dns: add forward records from ctx flpk --- nix/lib/dns.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/lib/dns.nix b/nix/lib/dns.nix index 935ae51..dee1197 100644 --- a/nix/lib/dns.nix +++ b/nix/lib/dns.nix @@ -201,6 +201,7 @@ rec { records = hosts4Records hosts4 ++ lib.optionals (hosts6 ? up4) (hosts6Records hosts6.up4) ++ + lib.optionals (hosts6 ? flpk) (hosts6Records hosts6.flpk) ++ extraRecords; dynamic = dynamicDomain; }