nixos-config/install.sh

39 lines
888 B
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
mkdir -p /mnt/boot
mount ${DISK}1 /mnt/boot
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 --root /mnt --flake /mnt/etc/nixos#vm
# Set the root password
echo "Please set the root password:"
passwd
# Reboot the system
echo "Installation complete. Rebooting..."
reboot