Skip to content

Commit

Permalink
nixos/wireless: fix indentation of extraConfig (NixOS#377482)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnhmjoj authored Jan 29, 2025
2 parents 5ecc399 + fbf6812 commit 2e4d19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/wpa_supplicant.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit 2e4d19a

Please sign in to comment.