From f3a3768f92c47d27efebfc7a85a89650bc11c2cd Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 18 Jan 2023 00:20:18 +0000 Subject: [PATCH] fix: small vanity thing to get teh records in a line --- applications/dns.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/dns.nix b/applications/dns.nix index 132868f..bef05b9 100644 --- a/applications/dns.nix +++ b/applications/dns.nix @@ -91,7 +91,7 @@ in { ; External addresses ; ------------------------------------------ - ${lib.strings.concatMapStrings (x: x + "\n") cfg.records.external} + ${lib.strings.concatMapStrings (x: x + "\n ") cfg.records.external} ; this is fixed for now @@ -106,7 +106,7 @@ in { ; cname's ; ------------------------------------------ - ${lib.strings.concatMapStrings (x: x + "\n") cfg.records.cname} + ${lib.strings.concatMapStrings (x: x + "\n ") cfg.records.cname} ''; };