adding h002 back in

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-18 17:38:16 -06:00
parent ea9340a612
commit acfec76a79
11 changed files with 1014 additions and 131 deletions

View file

@ -25,11 +25,14 @@ parted /dev/$DEVICE -- mkpart PRIMARY 2GB 100%
```sh
BOOT=sda1
mkfs.fat -F 32 -n BOOT /dev/$BOOT
PRIMARY=sda2
SWAP=sda3
mkfs.fat -F 32 -n BOOT /dev/$BOOT
bcachefs format --label=nixos --encrypted /dev/$PRIMARY
bcachefs unlock /dev/$PRIMARY
SWAP=sda3
mkswap /dev/$SWAP
swapon /dev/$SWAP
```