summaryrefslogtreecommitdiff
path: root/modules/nfs.nix
blob: f997f28f6e98d138579889efb63fb26791dcf16f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  fileSystems."/mnt/books" = {
    device = "10.67.40.1:/home/christian/books";
    fsType = "nfs";
    options = [
      "x-systemd.automount"
      "x-systemd.requires=wg-quick-wg0.service"
      "x-systemd.after=wg-quick-wg0.service"
      "noauto"
      "soft"
      "timeo=30"
    ];
  };
}