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

  services.restic.backups = {};
}