nixos-config/hosts/elder/filesystems/default.nix
2025-06-06 14:54:14 -04:00

16 lines
282 B
Nix

{ ... }:
{
fileSystems = {
"/persist/storage" = {
device = "/dev/disk/by-uuid/5c3c533b-1c70-4411-854a-37fa794fc17c";
fsType = "btrfs";
options = [
"nofail"
"nosuid"
"subvol=storage"
];
};
"elder".enable = false;
};
}