Trying to get correct disk formats

This commit is contained in:
Luke Else 2025-03-21 01:02:02 +00:00
parent c35583ca3a
commit 74eaf03572

View File

@ -20,19 +20,17 @@ parted $DISK -- set 3 esp on
cryptsetup luksFormat ${DISK}1
cryptsetup open ${DISK}1 root
# # Now format the encrypted partition
# mkfs.ext4 /dev/mapper/root
# Now format the encrypted partition
mkfs.ext4 /dev/mapper/root
# # Mount the partitions
# mount /dev/mapper/root /mnt
# Mount the partitions
mount /dev/mapper/root /mnt
# Format
mkfs.ext4 -L nixos ${DISK}1
mkswap -L swap ${DISK}2
mkfs.fat -F 32 -n boot ${DISK}3
# Mount the partitions
mount /dev/disk/by-label/nixos /mnt
mkdir -p /mnt/boot
mount -o umask=077 /dev/disk/by-label/boot /mnt/boot