From 72f8cf91bc2074f75fbc67d19f9ee5ce73894473 Mon Sep 17 00:00:00 2001 From: dadada Date: Sat, 2 Mar 2024 22:11:36 +0100 Subject: [PATCH] Revert "borg: switch to ourly backups" This reverts commit cb6f66c6c8340233665a973399a0f90d069a7c54. --- nixos/modules/backup.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/backup.nix b/nixos/modules/backup.nix index 0395008..c18aeb8 100644 --- a/nixos/modules/backup.nix +++ b/nixos/modules/backup.nix @@ -169,7 +169,7 @@ in passCommand = "cat ${cfg.backup1.passphrasePath}"; }; compression = "auto,lz4"; - startAt = "hourly"; + startAt = "daily"; }; services.borgbackup.jobs.backup2 = mkIf cfg.backup2.enable { @@ -185,7 +185,7 @@ in passCommand = "cat ${cfg.backup2.passphrasePath}"; }; compression = "auto,lz4"; - startAt = "hourly"; + startAt = "daily"; environment = { BORG_RELOCATED_REPO_ACCESS_IS_OK = "no"; };