Compare commits

..

No commits in common. "a378e909a11b8585e05cc1688ffc351fb525e2c7" and "624861cab980b1ac97b731619268a73b9021f8df" have entirely different histories.

View File

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