From 3581f97016d4aa28acd71da664bcb7322d76a79a Mon Sep 17 00:00:00 2001 From: Soispha Date: Sun, 14 Jan 2024 19:21:10 +0100 Subject: fix(sys/services/restic): Set the system start time to 'daily' Considering that the db dump takes longer than an hour, an hourly service start time could lead to multiple dumps happening concurrently. This should reduce this risk --- system/services/restic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/services/restic/default.nix b/system/services/restic/default.nix index b5e24c2..3af92a5 100644 --- a/system/services/restic/default.nix +++ b/system/services/restic/default.nix @@ -41,7 +41,7 @@ repository = "rclone: "; # There is only one repository served timerConfig = { Requires = "network-online.target"; - OnCalendar = "hourly"; + OnCalendar = "daily"; Persistent = true; }; }; -- cgit 1.4.1