summaryrefslogtreecommitdiffstats
path: root/lass/2configs/nfs-dl.nix
blob: eeab732babff5a1c35f7aea3e1f2025ec43a2692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  fileSystems."/mnt/prism" = {
    device = "prism.w:/export/download";
    fsType = "nfs";
    options = [
      #"timeo=14"
      "noauto"
      "noatime"
      "nodiratime"
      #"noac"
      #"nocto"
      "x-systemd.automount"
      "x-systemd.device-timeout=1"
      "x-systemd.idle-timeout=1min"
      "x-systemd.requires=retiolum.service"
      "user"
      "_netdev"
      "soft"
    ];
  };
}