2025-01-12 20:25:44 +00:00
|
|
|
{configVars, ...}: let
|
|
|
|
mediaDataMountPoint = configVars.locations.mediaDataMountPoint;
|
|
|
|
in {
|
|
|
|
fileSystems.${mediaDataMountPoint} = {
|
2024-08-20 13:14:24 +01:00
|
|
|
device = "10.0.10.30:/mnt/media";
|
|
|
|
fsType = "nfs";
|
2024-09-15 09:51:21 +01:00
|
|
|
options = ["noatime" "_netdev"];
|
2024-08-20 13:14:24 +01:00
|
|
|
};
|
|
|
|
}
|