stockholm/lass/2configs/nfs-dl.nix

23 lines
407 B
Nix
Raw Normal View History

2018-12-24 15:32:41 +00:00
{
fileSystems."/mnt/prism" = {
2019-09-05 16:08:49 +00:00
device = "prism.w:/export/download";
2018-12-24 15:32:41 +00:00
fsType = "nfs";
2019-09-05 16:08:49 +00:00
options = [
2020-06-24 10:00:27 +00:00
#"timeo=14"
2019-09-05 16:08:49 +00:00
"noauto"
"noatime"
"nodiratime"
2020-06-24 10:00:27 +00:00
#"noac"
#"nocto"
2019-09-05 16:08:49 +00:00
"x-systemd.automount"
"x-systemd.device-timeout=1"
"x-systemd.idle-timeout=1min"
"x-systemd.requires=retiolum.service"
2020-06-24 10:00:27 +00:00
"user"
"_netdev"
2021-01-24 08:48:21 +00:00
"soft"
2019-09-05 16:08:49 +00:00
];
2018-12-24 15:32:41 +00:00
};
}