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

21 lines
412 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 = [
"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"
"x-systemd.requires=wpa_supplicant.service"
];
2018-12-24 15:32:41 +00:00
};
}