9 lines
246 B
Nix
9 lines
246 B
Nix
{configVars, ...}: let
|
|
photosDataMountPoint = configVars.locations.photosDataMountPoint;
|
|
in {
|
|
fileSystems.${photosDataMountPoint} = {
|
|
device = "10.0.10.30:/mnt/photos";
|
|
fsType = "nfs";
|
|
options = ["noatime" "_netdev" "ro"];
|
|
};
|
|
}
|