2025-01-13 10:07:09 +00:00
|
|
|
{configVars, ...}: let
|
|
|
|
photosDataMountPoint = configVars.locations.photosDataMountPoint;
|
|
|
|
in {
|
|
|
|
fileSystems.${photosDataMountPoint} = {
|
2024-08-26 21:04:19 +01:00
|
|
|
device = "10.0.10.30:/mnt/photos";
|
2024-08-20 13:14:24 +01:00
|
|
|
fsType = "nfs";
|
2025-01-13 10:07:09 +00:00
|
|
|
options = ["noatime" "_netdev" "ro"];
|
2024-08-20 13:14:24 +01:00
|
|
|
};
|
|
|
|
}
|