nixos/hosts/common/optional/nfs-mounts/photos.nix

10 lines
154 B
Nix
Raw Normal View History

2024-08-20 13:14:24 +01:00
{
fileSystems."/media/homeshare" = {
device = "10.0.10.30:/mnt/homeshare";
fsType = "nfs";
options = [ "noatime" "_netdev" "ro" ];
};
}