summaryrefslogtreecommitdiff
path: root/config/storage.nix
blob: a1461b1c91b70a65751ce9156acfd4b0048740d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{...}: {
  boot.supportedFilesystems = ["nfs"];
  fileSystems."/data" = {
    device = "ds411.aristote.mesh:/volume2/hephaistos";
    fsType = "nfs";
    options = [
      # lazy mounting
      "x-systemd.automount"
      "noauto"
      # sleeping
      "x-systemd.idle-timeout=600"
      # caching
      "fsc"
    ];
  };

  services.cachefilesd.enable = true;
}