stockholm/lass/2configs/nfs-dl.nix
2020-06-24 12:00:27 +02:00

23 lines
444 B
Nix

{
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"
"x-systemd.requires=wpa_supplicant.service"
"user"
"_netdev"
];
};
}