Install images for solnix — Nix on illumos. Each image below lists its checksum; verify it before writing.
A Nix user on illumos can point at the solnix cache and stop recompiling —
signed, verifiable, edge-cached. Two lines in /etc/nix/nix.conf:
# /etc/nix/nix.conf substituters = https://cache.solnix.io https://cache.nixos.org trusted-public-keys = cache.solnix.io-1:8UNrVAOSOrI9PGHc8/pD2Yqp265ZeYb3OId+gv4+wm8=
Full details in the binary cache chapter.
Full-text search across everything in the cache, per architecture.
Every image ships a .sha256. Confirm your download is intact before writing it.
# download the ISO and its .sha256 into the same directory, then: sha256sum -c solnix-<arch>-<release>.iso.sha256 # or compare by hand against the sha256 shown above: sha256sum solnix-<arch>-<release>.iso
On illumos/macOS use shasum -a 256 if sha256sum is absent.
The hash must match exactly — if it doesn't, re-download; do not boot a corrupted image.
Write the raw image to the whole disk (not a partition). This erases the target device.
dd to the wrong device destroys data.
Identify the USB stick first (lsblk on Linux, diskutil list on macOS,
diskinfo / rmformat -l on illumos) and double-check the device node.# Linux: of=/dev/sdX macOS: of=/dev/rdiskN illumos: of=/dev/rdsk/cNtNdNp0 sudo dd if=solnix-<arch>-<release>.iso of=/dev/rdiskN bs=4M conv=fsync status=progress sync
Replace /dev/rdiskN with your actual device. Disk images (.raw/.img)
are written the same way. Cloud images (.qcow2/.vmdk) are imported into your hypervisor instead.
The x86_64 image will be UEFI + legacy BIOS bootable. Boot from the USB stick (use your firmware's boot menu — often F12/F2/Esc/Del), then follow the installer. See the getting-started guide for the walkthrough.