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
No known key found for this signature in database
GPG Key ID: B39893FA5F65CAE1

View File

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