From bf13844ac2818f8d358f4d698c642138a22921e1 Mon Sep 17 00:00:00 2001 From: cy Date: Fri, 20 Dec 2024 03:08:11 -0500 Subject: [PATCH] set postgresql backup to hourly --- hosts/chunk/postgres.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/chunk/postgres.nix b/hosts/chunk/postgres.nix index 2571b28..2448191 100644 --- a/hosts/chunk/postgres.nix +++ b/hosts/chunk/postgres.nix @@ -19,5 +19,8 @@ host all all 172.18.0.0/16 trust ''; }; - services.postgresqlBackup.enable = true; + services.postgresqlBackup = { + enable = true; + startAt = "hourly"; + }; }