nixos-config/hosts/kitty/filesystems/default.nix
2025-03-08 02:44:09 -05:00

9 lines
228 B
Nix

{ ... }:
{
fileSystems."/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=persist" "compress=zstd" "noatime" ];
};
}