16 lines
282 B
Nix
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;
|
|
};
|
|
}
|