Revert "Replace the NFS share for the restic repo with an SSD"

This reverts commit 1f3d357efb.
This commit is contained in:
Andreas Zweili 2023-12-31 17:50:59 +01:00
parent be310b4627
commit 79a07cb6c3
2 changed files with 5 additions and 4 deletions

View File

@ -28,6 +28,11 @@ in
restic
];
fileSystems."${cfg.repository}" = {
device = "10.7.89.108:restic-server";
fsType = "nfs";
options = [ "noatime" "hard" "nfsvers=4.0" ];
};
services.restic.server = {
enable = true;
dataDir = cfg.repository;

View File

@ -7,10 +7,6 @@
ip = "10.7.89.30";
};
};
fileSystems."/var/lib/restic-server" = {
device = "/dev/disk/by-label/backups";
fsType = "ext4";
};
services = {
az-restic-server.enable = true;
};