Compare commits
2 Commits
624861cab9
...
a378e909a1
Author | SHA1 | Date | |
---|---|---|---|
a378e909a1 | |||
759dabef33 |
46
install.sh
46
install.sh
@ -1,32 +1,40 @@
|
|||||||
# Assuming /dev/sda is the target disk
|
#!/bin/bash
|
||||||
parted /dev/sda -- mklabel gpt
|
|
||||||
|
|
||||||
parted /dev/sda -- mkpart ESP fat32 1MiB 513MiB
|
# Define the disk to partition
|
||||||
parted /dev/sda -- set 1 boot on
|
DISK="/dev/sda"
|
||||||
|
|
||||||
parted /dev/sda -- mkpart primary ext4 513MiB 100%
|
# Create a new partition table
|
||||||
|
parted $DISK -- mklabel gpt
|
||||||
|
|
||||||
mkfs.fat -F32 -n BOOT /dev/sda1
|
# Create a 512MB partition for UEFI boot
|
||||||
mkfs.ext4 /dev/sda2
|
parted $DISK -- mkpart ESP fat32 1MiB 513MiB
|
||||||
|
parted $DISK -- set 1 boot on
|
||||||
|
|
||||||
mount /dev/sda2 /mnt
|
# Create the root partition
|
||||||
cryptsetup luksFormat /dev/sda2
|
parted $DISK -- mkpart primary ext4 513MiB 100%
|
||||||
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 /dev/sda1 /mnt/boot
|
mount ${DISK}1 /mnt/boot
|
||||||
|
|
||||||
mkdir -p /mnt/etc/nixos
|
|
||||||
git clone https://git.luke-else.co.uk/luke-else/nixos-config.git /mnt/etc/nixos
|
|
||||||
|
|
||||||
|
# Install NixOS
|
||||||
nixos-generate-config --root /mnt
|
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
|
passwd
|
||||||
|
|
||||||
|
# Reboot the system
|
||||||
|
echo "Installation complete. Rebooting..."
|
||||||
reboot
|
reboot
|
||||||
|
|
||||||
# sudo nixos-rebuild switch --flake ~/nixos-config#vm
|
|
Loading…
x
Reference in New Issue
Block a user