nixos/doc/wireless: fix comments
Those had been misplaced by nixfmt.
This commit is contained in:
@@ -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";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user