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