46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
# Define the disk to partition
|
|
DISK="/dev/sda"
|
|
|
|
# Create a new partition table
|
|
parted $DISK -- mklabel gpt
|
|
|
|
# Create a 512MB partition for UEFI boot
|
|
parted $DISK -- mkpart ESP fat32 1MiB 513MiB
|
|
parted $DISK -- set 1 boot on
|
|
|
|
# Create the root partition
|
|
parted $DISK -- mkpart primary ext4 513MiB 100%
|
|
|
|
# Format the partitions
|
|
mkfs.fat -F32 ${DISK}1
|
|
mkfs.ext4 ${DISK}2
|
|
|
|
# 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
|
|
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
|
|
|
|
# Install NixOS
|
|
nixos-generate-config --root /mnt
|
|
|
|
# Install NixOS using the cloned configuration
|
|
nixos-install --flake /mnt/etc/nixos#vm
|
|
|
|
# Reboot the system
|
|
echo "Installation complete. Rebooting..."
|
|
reboot |