1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

Merge pull request #620 from metafates/master

fix(wg-quick): builtins function typo
This commit is contained in:
Domen Kožar 2023-03-31 13:49:23 +01:00 committed by GitHub
commit 99d4187d11
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) ''