From 759dabef33f40125d853862202bdd1aad506c402 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 20 Mar 2025 17:53:24 +0000 Subject: [PATCH] Updated install script --- install.sh | 48 ++++++++++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/install.sh b/install.sh index 4c43e2e..d861e7a 100644 --- a/install.sh +++ b/install.sh @@ -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 \ No newline at end of file +# Reboot the system +echo "Installation complete. Rebooting..." +reboot \ No newline at end of file