From 8699abe98f93aca6733c7c694a908f4d25fc4d90 Mon Sep 17 00:00:00 2001 From: Vadim Date: Tue, 21 Mar 2023 13:23:16 +0300 Subject: [PATCH] fix(wg-quick): builtins function typo --- modules/services/wg-quick.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/wg-quick.nix b/modules/services/wg-quick.nix index b685f4eb..787b6632 100644 --- a/modules/services/wg-quick.nix +++ b/modules/services/wg-quick.nix @@ -142,7 +142,7 @@ let '' + optionalString (interfaceOpt.address != [ ]) ('' Address = ${concatStringsSep "," interfaceOpt.address} '') + optionalString (interfaceOpt.dns != [ ]) '' - DNS = ${concatStringsep "," interfaceOpt.dns} + DNS = ${concatStringsSep "," interfaceOpt.dns} '' + optionalString (interfaceOpt.listenPort != null) '' ListenPort = ${toString interfaceOpt.listenPort} '' + optionalString (interfaceOpt.mtu != null) ''