diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-05-03 02:21:38 -0700 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-05-03 02:21:38 -0700 |
commit | 20281b3c52482bef3b00cf6947c64b1b942b9249 (patch) | |
tree | 1560d047199dad3fc52d64feb5b498742113c0d0 /doc/wpa_supplicant.md | |
parent | 34fb0f6d36a56c2e1996f5899ce1ac5eb11838f2 (diff) | |
download | nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar.gz nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar.bz2 nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar.lz nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar.xz nix-20281b3c52482bef3b00cf6947c64b1b942b9249.tar.zst nix-20281b3c52482bef3b00cf6947c64b1b942b9249.zip |
Add some extra documentation
Diffstat (limited to '')
-rw-r--r-- | doc/wpa_supplicant.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/wpa_supplicant.md b/doc/wpa_supplicant.md new file mode 100644 index 0000000..ba36f0d --- /dev/null +++ b/doc/wpa_supplicant.md @@ -0,0 +1,29 @@ +# Enabling Wireless in NixOS Installer + +Assuming you have a wireless interface directly supported by the +installer's kernel (and if not, have you tried the unstable +installer ISO yet?), you will need some extra commands beyond the +admittedly brief notes about wpa_supplicant in the installer's +shell and the man page for wpa_cli itself. + +As the brief note does say, you can get started with: + +``` +sudo systemctl start wpa_supplicant` +wpa_cli +``` + +Once inside the CLI, you then need the following: + +``` +scan +scan_results +add_network 0 +set_network 0 ssid "Some SSID" +set_network 0 psk "some password" +enable_network 0 +save_config +quit +``` + +`dhcpcd` should run automatically. |