From c70f90562efa7876d7a54709bac5c44d478989c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Fri, 12 Jan 2024 18:08:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20(silicon/system)=20change=20date?= =?UTF-8?q?s=20"daily"=20to=20"12:00"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/silicon/services/borgbackup/default.nix | 2 +- hosts/silicon/system/nix/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/silicon/services/borgbackup/default.nix b/hosts/silicon/services/borgbackup/default.nix index e4a686d..85cdde1 100644 --- a/hosts/silicon/services/borgbackup/default.nix +++ b/hosts/silicon/services/borgbackup/default.nix @@ -41,6 +41,6 @@ passCommand = "cat ${config.age.secrets.borgbackup.path}"; }; compression = "auto,zstd"; - startAt = "daily"; + startAt = "12:00"; }; } diff --git a/hosts/silicon/system/nix/default.nix b/hosts/silicon/system/nix/default.nix index 244ce6b..5fdb0ff 100644 --- a/hosts/silicon/system/nix/default.nix +++ b/hosts/silicon/system/nix/default.nix @@ -18,13 +18,13 @@ nix.settings.auto-optimise-store = true; nix.optimise = { automatic = true; - dates = "daily"; + dates = "12:00"; }; # garbage collection nix.gc = { automatic = true; - dates = "daily"; + dates = "12:00"; options = "--delete-older-than 30d"; };