Updated install script

This commit is contained in:
Luke Else 2025-03-20 17:53:24 +00:00
parent 624861cab9
commit 759dabef33

View File

@ -1,32 +1,40 @@
# Assuming /dev/sda is the target disk
parted /dev/sda -- mklabel gpt
#!/bin/bash
parted /dev/sda -- mkpart ESP fat32 1MiB 513MiB
parted /dev/sda -- set 1 boot on
# Define the disk to partition
DISK="/dev/sdX"
parted /dev/sda -- mkpart primary ext4 513MiB 100%
# Create a new partition table
parted $DISK -- mklabel gpt
mkfs.fat -F32 -n BOOT /dev/sda1
mkfs.ext4 /dev/sda2
# Create a 512MB partition for UEFI boot
parted $DISK -- mkpart ESP fat32 1MiB 513MiB
parted $DISK -- set 1 boot on
mount /dev/sda2 /mnt
cryptsetup luksFormat /dev/sda2
cryptsetup open /dev/sda2 root
mkfs.ext4 /dev/mapper/root
mount /dev/mapper/root /mnt
# 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
mkdir -p /mnt/boot
mount /dev/sda1 /mnt/boot
mkdir -p /mnt/etc/nixos
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
mount ${DISK}1 /mnt/boot
# Install NixOS
nixos-generate-config --root /mnt
nixos-install --flake /mnt/etc/nixos#vm
# Clone the configuration repository
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
# Install NixOS using the cloned configuration
nixos-install --root /mnt
# Set the root password
echo "Please set the root password:"
passwd
reboot
# sudo nixos-rebuild switch --flake ~/nixos-config#vm
# Reboot the system
echo "Installation complete. Rebooting..."
reboot