19 lines
358 B
Nix
19 lines
358 B
Nix
{ ... }:
|
|
{
|
|
fileSystems = {
|
|
"/persist/storage" = {
|
|
device = "/dev/disk/by-uuid/d0d6783f-ad51-4d85-b8a9-3374f6460ef6";
|
|
fsType = "btrfs";
|
|
options = [
|
|
"nofail"
|
|
"nosuid"
|
|
"subvol=storage"
|
|
];
|
|
};
|
|
|
|
# Network mounts
|
|
"kitty".enable = true;
|
|
"midas".enable = true;
|
|
"prophet".enable = true;
|
|
};
|
|
}
|