blob: 91b02645532bf3175e3ceffe27c1b050224a6902 (
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"
"x-systemd.requires=wpa_supplicant.service"
"user"
"_netdev"
];
};
}
|