1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

fix(wg-quick): builtins function typo

This commit is contained in:
Vadim 2023-03-21 13:23:16 +03:00 committed by GitHub
parent 87b9d090ad
commit 8699abe98f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) ''