Updated install scripts

This commit is contained in:
Luke Else 2025-03-21 00:25:07 +00:00
parent 2e2ca7c41e
commit d3e792fb52
2 changed files with 18 additions and 14 deletions

View File

@ -4,22 +4,21 @@ DISK="/dev/sda"
# Create a new partition table # Create a new partition table
parted $DISK -- mklabel gpt 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 # Create the root partition
parted $DISK -- mkpart primary ext4 513MiB 100% parted $DISK -- mkpart root ext4 512MiB -8GB
# Format the boot partition # Create the swap partition
mkfs.fat -F32 ${DISK}1 parted $DISK -- mkpart swap linux-swap -8GB 100%
parted $DISK -- mkpart ESP fat32 1MB 512MiB
parted $DISK -- set 3 esp on
# DO NOT FORMAT the root partition before encryption! # DO NOT FORMAT the root partition before encryption!
# cryptsetup will fail if the partition is already formatted # cryptsetup will fail if the partition is already formatted
# Encrypt the root partition # Encrypt the root partition
cryptsetup luksFormat ${DISK}2 cryptsetup luksFormat ${DISK}1
cryptsetup open ${DISK}2 root cryptsetup open ${DISK}1 root
# Now format the encrypted partition # Now format the encrypted partition
mkfs.ext4 /dev/mapper/root mkfs.ext4 /dev/mapper/root
@ -27,16 +26,21 @@ mkfs.ext4 /dev/mapper/root
# Mount the partitions # Mount the partitions
mount /dev/mapper/root /mnt mount /dev/mapper/root /mnt
# Format
mkfs.ext4 -L nixos ${DISK}1
mkswap -L swap ${DISK}2
mkfs.fat -F 32 -n boot ${DISK}3
# Mount the partitions
mount /dev/disk/by-label/nixos /mnt
mkdir -p /mnt/boot mkdir -p /mnt/boot
mount ${DISK}1 /mnt/boot mount /dev/disk/by-label/boot /mnt/boot
# Clone the configuration repository # Clone the configuration repository
mkdir -p /mnt/etc/nixos mkdir -p /mnt/etc/nixos
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
# Generate NixOS configuration (optional if using flakes)
nixos-generate-config --root /mnt
# Install NixOS using the cloned configuration # Install NixOS using the cloned configuration
nixos-install --flake /mnt/etc/nixos#vm nixos-install --flake /mnt/etc/nixos#vm

View File

@ -18,7 +18,7 @@
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = [{ device = "/swapfile"; size = 4096; }]; swapDevices = [{ device = "/swapfile"; size = 8192; }];
# Locales and timezone # Locales and timezone
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";