Updated order of encryption

This commit is contained in:
Luke Else 2025-03-20 23:33:28 +00:00
parent 6971d6d9f2
commit 4c3fdff8a2

View File

@ -11,31 +11,30 @@ parted $DISK -- set 1 boot on
# Create the root partition
parted $DISK -- mkpart primary ext4 513MiB 100%
# Format the partitions
# Format the boot partition
mkfs.fat -F32 ${DISK}1
mkfs.ext4 ${DISK}2
# DO NOT FORMAT the root partition before encryption!
# cryptsetup will fail if the partition is already formatted
# Encrypt the root partition
cryptsetup luksFormat ${DISK}2
cryptsetup open ${DISK}2 root
# Now format the encrypted partition
mkfs.ext4 /dev/mapper/root
# Mount the partitions
mount ${DISK}2 /mnt
cryptsetup luksFormat /dev/sda2
cryptsetup open /dev/sda2 root
mkfs.ext4 /dev/mapper/root
mount /dev/mapper/root /mnt
mkdir -p /mnt/boot
mount ${DISK}1 /mnt/boot
cryptsetup luksFormat /dev/sda2
cryptsetup open /dev/sda2 root
mkfs.ext4 /dev/mapper/root
mount /dev/mapper/root /mnt
mkdir -p /mnt/etc/nixos
# Clone the configuration repository
mkdir -p /mnt/etc/nixos
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
# Install NixOS
# Generate NixOS configuration (optional if using flakes)
nixos-generate-config --root /mnt
# Install NixOS using the cloned configuration