blob: 4b1475ef38dfa7396c39d7c41520f5451ffcfa94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{
fileSystems."/mnt/prism" = {
device = "//prism.r/public";
fsType = "cifs";
options = [
"guest"
"nofail"
"noauto"
"ro"
"x-systemd.automount"
"x-systemd.device-timeout=1"
"x-systemd.idle-timeout=1min"
];
};
}
|