nixos/wireless: fix indentation of extraConfig (#377482)

This commit is contained in:
Michele Guerini Rocco
2025-01-29 14:14:10 +01:00
committed by GitHub
@@ -94,7 +94,7 @@ let
++ optional (pskString != null) "psk=${pskString}"
++ optionals (opts.auth != null) (filter (x: x != "") (splitString "\n" opts.auth))
++ optional (opts.priority != null) "priority=${toString opts.priority}"
++ optional (opts.extraConfig != "") opts.extraConfig;
++ filter (x: x != "") (splitString "\n" opts.extraConfig);
in
''
network={