summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/storage.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/config/storage.nix b/config/storage.nix
index a1461b1..ecb2dc1 100644
--- a/config/storage.nix
+++ b/config/storage.nix
@@ -1,6 +1,6 @@
{...}: {
boot.supportedFilesystems = ["nfs"];
- fileSystems."/data" = {
+ fileSystems."/backups" = {
device = "ds411.aristote.mesh:/volume2/hephaistos";
fsType = "nfs";
options = [
@@ -9,10 +9,8 @@
"noauto"
# sleeping
"x-systemd.idle-timeout=600"
- # caching
- "fsc"
];
};
- services.cachefilesd.enable = true;
+ services.restic.backups = {};
}