bonfire/nixosConfigurations/catarina
L-Nafaryus 3e8c2fc23f
All checks were successful
nix / check (push) Successful in 1m37s
flake: move secrets to nixosModules.bonfire
2024-05-06 16:46:35 +05:00
..
services catarina: add gitea action runner 2024-05-03 23:10:55 +05:00
default.nix flake: move secrets to nixosModules.bonfire 2024-05-06 16:46:35 +05:00
hardware.nix catarina: rename user; remove all necessary graphics; oscuro service 2024-04-26 17:05:21 +05:00
README.md astora: ext4 -> btrfs 2024-04-24 14:26:24 +05:00
users.nix catarina: rename user; remove all necessary graphics; oscuro service 2024-04-26 17:05:21 +05:00

catarina

Disk management

mkfs.fat -F 32 /dev/sda1
fatlabel /dev/sda1 boot

mkfs.btrfs /dev/sda2 
btrfs filesystem label /dev/sda2 nixos

mkdir -p /mnt 
mount /dev/sda2 /mnt 
btrfs subvolume create /mnt/root
btrfs subvolume create /mnt/nix 
btrfs subvolume create /mnt/home
btrfs subvolume create /mnt/persist
btrfs subvolume create /mnt/swap
umount /mnt 

mount -o compress=zstd,subvol=root /dev/sda2 /mnt 
mkdir /mnt/{boot,nix,home,persist,swap}
mount /dev/sda1 /mnt/boot
mount -o compress=zstd,noatime,subvol=nix /dev/sda2 /mnt/nix 
mount -o compress=zstd,subvol=home /dev/sda2 /mnt/home
mount -o compress=zstd,subvol=persist /dev/sda2 /mnt/persist
mount -o noatime,subvol=swap /dev/sda2 /mnt/swap

btrfs filesystem mkswapfile --size 16g --uuid clear /mnt/swap/swapfile

mkdir -p /media/{storage,btrbk-backups,btrbk-snapshots}