nixos-config/hosts/midas/filesystems/default.nix

10 lines
228 B
Nix
Raw Normal View History

2025-03-10 22:08:35 -04:00
{ ... }:
2025-02-14 16:34:45 -05:00
{
2025-03-10 22:08:35 -04:00
fileSystems."/persist" = {
device = "/dev/disk/by-uuid/acf95700-8669-45c7-9a72-bf3215b3c325";
fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=persist" "compress=zstd" "noatime" ];
2025-02-14 16:34:45 -05:00
};
}