2024-03-25 19:22:35 +01:00
|
|
|
#
|
|
|
|
# enable ssh for root
|
|
|
|
#
|
|
|
|
|
|
|
|
sudo bash
|
2024-08-18 18:53:31 +02:00
|
|
|
systemctl start sshd
|
2024-03-25 19:22:35 +01:00
|
|
|
passwd
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
#
|
|
|
|
# install script below
|
|
|
|
#
|
|
|
|
|
|
|
|
# fix unlocking https://nixos.wiki/wiki/Bcachefs
|
|
|
|
nix-env -iA nixos.keyutils
|
|
|
|
keyctl link @u @s
|
|
|
|
|
2024-01-10 20:02:57 +01:00
|
|
|
#
|
|
|
|
# kill old efi boot stuff
|
|
|
|
#
|
|
|
|
|
|
|
|
efibootmgr
|
|
|
|
efibootmgr -b 0 -B
|
2024-01-10 20:53:25 +01:00
|
|
|
efibootmgr -b 1 -B
|
|
|
|
efibootmgr -b 2 -B
|
|
|
|
efibootmgr -b 3 -B
|
|
|
|
efibootmgr -b 4 -B
|
|
|
|
efibootmgr
|
2024-01-10 20:02:57 +01:00
|
|
|
|
2023-09-16 16:54:02 +02:00
|
|
|
# Defining some helper variables (these will be used in later code
|
|
|
|
# blocks as well, so make sure to use the same terminal session or
|
|
|
|
# redefine them later)
|
|
|
|
DISK=/dev/disk/by-id/nvme-CT4000P3PSSD8_2325E6E63746
|
2024-08-18 18:53:31 +02:00
|
|
|
DISK2=/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F
|
2023-09-16 16:54:02 +02:00
|
|
|
HOST=mini
|
|
|
|
|
|
|
|
# ensure 4k sector size
|
|
|
|
nvme format --lbaf=1 --force $DISK
|
|
|
|
nvme id-ns -H $DISK
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
# kill old data
|
|
|
|
sgdisk --zap-all $DISK
|
|
|
|
blkdiscard -v $DISK
|
|
|
|
wipefs -a $DISK
|
|
|
|
gdisk -l $DISK
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# wipe second disk
|
|
|
|
sgdisk --zap-all $DISK2
|
|
|
|
blkdiscard -v $DISK2
|
|
|
|
wipefs -a $DISK2
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
2023-09-16 16:54:02 +02:00
|
|
|
# create partitions
|
|
|
|
parted $DISK -- mklabel gpt
|
|
|
|
sgdisk -n 1:0:+1024M -c 1:"EFI System Partition" -t 1:EF00 $DISK
|
2024-03-25 19:22:35 +01:00
|
|
|
sgdisk -n 2:0:0 -c 2:"Linux" -t 2:8e00 $DISK
|
2023-09-16 16:54:02 +02:00
|
|
|
parted $DISK -- set 1 boot on
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
# take a look
|
|
|
|
cat /proc/partitions
|
|
|
|
|
|
|
|
# boot partition
|
|
|
|
mkfs.fat -F 32 -n EFIBOOT $DISK-part1
|
|
|
|
|
2024-03-25 19:22:35 +01:00
|
|
|
sleep 5
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# create encrypted bcachefs over all disks, use only fast lz4 compression
|
|
|
|
bcachefs format --block_size=4096 --errors=ro --compression=lz4 --wide_macs --acl --encrypted --fs_label=nix --discard -f $DISK-part2 $DISK2
|
2024-03-25 19:22:35 +01:00
|
|
|
|
|
|
|
sleep 5
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-05-30 17:51:22 +02:00
|
|
|
# prepare install, tmpfs root
|
|
|
|
mount -t tmpfs none /mnt
|
2023-09-16 16:54:02 +02:00
|
|
|
|
|
|
|
# Create directories to mount file systems on
|
2024-08-18 18:53:31 +02:00
|
|
|
mkdir -p /mnt/{nix,home,boot,root,etc/nixos}
|
2023-09-16 16:54:02 +02:00
|
|
|
|
|
|
|
# mount the ESP
|
|
|
|
mount $DISK-part1 /mnt/boot
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# mount large bcachefs
|
|
|
|
mount -t bcachefs $DISK-part2:$DISK2 /mnt/nix
|
|
|
|
|
|
|
|
# ensure tmp fills not the RAM
|
|
|
|
mkdir -p /mnt/tmp /mnt/nix/tmp
|
|
|
|
mount --bind /mnt/nix/tmp /mnt/tmp
|
2023-09-16 16:54:02 +02:00
|
|
|
|
|
|
|
# bind mount persistent stuff to data
|
2024-08-18 18:53:31 +02:00
|
|
|
mkdir -p /mnt/nix/data/{home,root,nixos/$HOST}
|
|
|
|
mount --bind /mnt/nix/data/home /mnt/home
|
|
|
|
mount --bind /mnt/nix/data/root /mnt/root
|
|
|
|
mount --bind /mnt/nix/data/nixos/$HOST /mnt/etc/nixos
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# create fake /nix/data to have the right paths
|
|
|
|
mkdir -p /nix/data
|
|
|
|
mount --bind /mnt/nix/data /nix/data
|
2024-03-25 20:03:49 +01:00
|
|
|
|
2023-09-16 16:54:02 +02:00
|
|
|
# take a look
|
|
|
|
mount
|
|
|
|
|
|
|
|
# configure
|
|
|
|
nixos-generate-config --root /mnt
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# check /mnt/etc/nixos/hardware-configuration.nix /mnt/etc/nixos/configuration.nix
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# copy config data from another machine including secrets
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
sudo scp -r /nix/data/nixos root@192.168.13.100:/mnt/nix/data
|
2023-09-16 16:54:02 +02:00
|
|
|
|
|
|
|
# install
|
|
|
|
|
2024-03-25 20:03:49 +01:00
|
|
|
nixos-install --option experimental-features 'nix-command flakes' --no-root-passwd --root /mnt
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
# unmount all stuff and sync
|
2023-09-16 16:54:02 +02:00
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
umount -Rl /nix/data /mnt
|
|
|
|
sync
|
2023-09-17 00:23:47 +02:00
|
|
|
|
2024-01-10 21:23:35 +01:00
|
|
|
# sync all /data after the install
|
|
|
|
|
2024-08-18 18:53:31 +02:00
|
|
|
sudo -E rsync -va --delete --one-file-system /nix/data/ root@192.168.13.100:/nix/data/
|