From 36bcb891c7fae6b97ce252d9a64fbe9a8c8911ec Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 10 Oct 2025 16:01:38 -0500 Subject: [PATCH] feat: switched to backing up everything --- modules/nixos/services/postgresql/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/modules/nixos/services/postgresql/default.nix b/modules/nixos/services/postgresql/default.nix index abc8e37..7ef21e9 100755 --- a/modules/nixos/services/postgresql/default.nix +++ b/modules/nixos/services/postgresql/default.nix @@ -17,11 +17,12 @@ in location = backupPath; compression = "zstd"; startAt = "*-*-* 07:00:00"; - databases = [ - instances.mastodon.name - instances.forgejo.name - instances.firefly-iii.name - ]; + backupAll = true; + # databases = [ + # instances.mastodon.name + # instances.forgejo.name + # instances.firefly-iii.name + # ]; }; postgresql = { enable = true;