stockholm/lass/2configs/yellow-mounts/samba.nix

16 lines
274 B
Nix
Raw Normal View History

2021-10-24 19:35:54 +00:00
{
2023-01-04 20:00:29 +00:00
fileSystems."/mnt/yellow" = {
device = "//yellow.r/public";
2021-10-24 19:35:54 +00:00
fsType = "cifs";
options = [
"guest"
"nofail"
"noauto"
"ro"
"x-systemd.automount"
"x-systemd.device-timeout=1"
"x-systemd.idle-timeout=1min"
];
};
}