nixos/doc/wireless: fix comments

Those had been misplaced by nixfmt.
This commit is contained in:
Wolfgang Walther
2025-07-22 16:07:57 +02:00
parent 62fe016519
commit 0f3f710c86

View File

@@ -15,16 +15,16 @@ NixOS lets you specify networks for wpa_supplicant declaratively:
```nix ```nix
{ {
networking.wireless.networks = { networking.wireless.networks = {
echelon = {
# SSID with no spaces or special characters # SSID with no spaces or special characters
echelon = {
psk = "abcdefgh"; psk = "abcdefgh";
}; };
"echelon's AP" = {
# SSID with spaces and/or special characters # SSID with spaces and/or special characters
"echelon's AP" = {
psk = "ijklmnop"; psk = "ijklmnop";
}; };
echelon = {
# Hidden SSID # Hidden SSID
echelon = {
hidden = true; hidden = true;
psk = "qrstuvwx"; psk = "qrstuvwx";
}; };