more steps on the Mac

This commit is contained in:
Christoph Cullmann 2025-07-04 16:08:40 +02:00
parent fc0710e1a7
commit 4fd94e7984
No known key found for this signature in database

View file

@ -25,6 +25,18 @@ curl https://alx.sh | sh
# follow instructions on the guide https://github.com/nix-community/nixos-apple-silicon/blob/main/docs/uefi-standalone.md # follow instructions on the guide https://github.com/nix-community/nixos-apple-silicon/blob/main/docs/uefi-standalone.md
# boot with installer stick on Mac
I did need to do: (If "mounting `/dev/root` on `/mnt-root/iso` failed: No such file or directory" during boot…)
Some flash drives have quirks. Try a different drive, or use the following steps:
Attempt to start the installer normally
When the boot fails and you are prompted, hit i to start a shell
Unplug your flash drive, plug it into a different port, then wait 30 seconds
Run the command mount -t iso9660 /dev/root /mnt-root/iso
Exit the shell by running exit to continue the boot process
# #
# enable ssh for root # enable ssh for root
# #
@ -34,7 +46,11 @@ systemctl start sshd
passwd passwd
# get wlan # get wlan
nmtui iwctl
station wlan0 scan
station wlan0 connect <SSID>
station wlan0 show
exit
# #
# install script below # install script below