From 74eaf0357262f22e08617d3b41d1eabd4e2cf287 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 21 Mar 2025 01:02:02 +0000 Subject: [PATCH] Trying to get correct disk formats --- install.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index df1f7f2..fd312e3 100644 --- a/install.sh +++ b/install.sh @@ -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