From 36faf97903b204575a9a768e14216197ec5989d2 Mon Sep 17 00:00:00 2001 From: Hans Muendelein Date: Mon, 21 Oct 2024 14:23:46 +0200 Subject: [PATCH] Add readme --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d4283d --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Installing a fresh NixOS + +```bash +sudo -i +systemctl start wpa_supplicant +wpa_cli + +``` +And then: + +``` +> 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 +``` + +then set the required crypt and root pw and start the installer script: + +``` +nix-shell -E "import (builtins.fetchurl https://git.cluster.gay/hans/nixos-install/raw/branch/main/shell.nix)" +``` +