nixos/hosts/common/optional/fileserver/bind-mounts/photos.nix

14 lines
238 B
Nix

{configVars, ...}: let
homeshareDataLocation = configVars.locations.homeshareDataLocation;
in
{
fileSystems."/media/photos" = {
device = "${homeshareDataLocation}/photos";
fsType = "none";
options = [ "bind" ];
};
}