Go to file
Hans Muendelein b2576dc0b8
Add instructions for wpa3 wifis
2025-07-26 16:52:00 +02:00
.gitignore Cleanup working version 2024-11-02 22:54:11 +01:00
README.md Add instructions for wpa3 wifis 2025-07-26 16:52:00 +02:00
shell.nix Add instructions for wpa3 wifis 2025-07-26 16:52:00 +02:00

README.md

Installing a fresh NixOS

Add the new host to https://git.cluster.gay/hans/nix Boot into the nixos minimal install iso Plug the yubikey with gpg key on it into the machine

Now do the following:

sudo -i
rfkill unblock 0
rfkill unblock 1
...
systemctl start wpa_supplicant
wpa_cli

And then for wpa3

> add_network
0
> set_network 0 ssid "forest"
OK
> set_network 0 key_mgmt SAE
OK
> set_network 0 sae_password "ki*****"
OK
> enable_network 0
OK
quit
nix-shell -E "import (builtins.fetchurl https://git.cluster.gay/hans/nixos-install/raw/branch/main/shell.nix)"

Or older wpa2

> add_network
0
> set_network 0 ssid "forest"
OK
> set_network 0 psk "ki*****"
OK
> set_network 0 key_mgmt WPA-PSK
OK
> enable_network 0
OK
quit
nix-shell -E "import (builtins.fetchurl https://git.cluster.gay/hans/nixos-install/raw/branch/main/shell.nix)"