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

23 lines
407 B
Nix
Raw Normal View History

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