bonfire/nixosConfigurations/catarina
2024-04-23 14:28:34 +05:00
..
services catarina: disable jellyfin 2024-03-26 15:33:02 +05:00
default.nix update: flake inputs 2024-04-23 14:28:34 +05:00
hardware.nix catarina: backups and snapshots #1, fs description #3 2024-04-03 22:24:18 +05:00
README.md catarina: backups and snapshots #1, fs description #3 2024-04-03 22:24:18 +05:00
users.nix catarina: btrfs update 2024-02-29 16:15:16 +05:00

catarina

Partitions

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 /swap/swapfile

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