summaryrefslogtreecommitdiffstats
path: root/lass/2configs/yellow-mounts/samba.nix
blob: e16f1cc4756a8e36ff90a83d384ab0ede0352883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  fileSystems."/mnt/yellow" = {
    device = "//yellow.r/public";
    fsType = "cifs";
    options = [
      "guest"
      "nofail"
      "noauto"
      "ro"
      "x-systemd.automount"
      "x-systemd.device-timeout=1"
      "x-systemd.idle-timeout=1min"
    ];
  };
 }