🩹 (silicon/system) change dates "daily" to "12:00"

This commit is contained in:
Laureηt 2024-01-12 18:08:17 +01:00
parent 0d47653d4b
commit c70f90562e
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
2 changed files with 3 additions and 3 deletions

View file

@ -41,6 +41,6 @@
passCommand = "cat ${config.age.secrets.borgbackup.path}";
};
compression = "auto,zstd";
startAt = "daily";
startAt = "12:00";
};
}

View file

@ -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";
};