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:
parent
87b9d090ad
commit
8699abe98f
1 changed files with 1 additions and 1 deletions
|
@ -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) ''
|
||||
|
|
Loading…
Add table
Reference in a new issue