Properly enabled EFI and re-added encryption to the disk
This commit is contained in:
parent
4d4dff45ee
commit
ad1b628bce
11
install.sh
11
install.sh
@ -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..."
|
||||
|
@ -8,6 +8,11 @@
|
||||
efiSupport = true;
|
||||
};
|
||||
|
||||
boot.loader.efi = {
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/mapper/root";
|
||||
fsType = "ext4";
|
||||
|
Loading…
x
Reference in New Issue
Block a user