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
{
networking.wireless.networks = {
# SSID with no spaces or special characters
echelon = {
# SSID with no spaces or special characters
psk = "abcdefgh";
};
# SSID with spaces and/or special characters
"echelon's AP" = {
# SSID with spaces and/or special characters
psk = "ijklmnop";
};
# Hidden SSID
echelon = {
# Hidden SSID
hidden = true;
psk = "qrstuvwx";
};