Properly enabled EFI and re-added encryption to the disk

This commit is contained in:
Luke Else 2025-03-20 23:20:11 +00:00
parent 4d4dff45ee
commit ad1b628bce
2 changed files with 11 additions and 5 deletions

View File

@ -20,6 +20,11 @@ mount ${DISK}2 /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
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
@ -28,11 +33,7 @@ git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
nixos-generate-config --root /mnt
# Install NixOS using the cloned configuration
nixos-install --root /mnt --flake /mnt/etc/nixos#vm
# Set the root password
echo "Please set the root password:"
passwd
nixos-install --flake /mnt/etc/nixos#vm
# Reboot the system
echo "Installation complete. Rebooting..."

View File

@ -8,6 +8,11 @@
efiSupport = true;
};
boot.loader.efi = {
efiSysMountPoint = "/boot/efi";
canTouchEfiVariables = true;
};
fileSystems."/" = {
device = "/dev/mapper/root";
fsType = "ext4";