blob: ba53321b98194a19fca7501a23a75473aa5ddc99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
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"
];
};
}
|