From 471ecd87ccd12bdaa012ebb3f0ebd054cb973549 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 7 Feb 2021 19:53:44 +0000 Subject: [PATCH] services: postgresql-backup: explicitly backup all --- services/postgresql-backup.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/services/postgresql-backup.nix b/services/postgresql-backup.nix index 9916d79..dff5494 100644 --- a/services/postgresql-backup.nix +++ b/services/postgresql-backup.nix @@ -11,6 +11,7 @@ in config = lib.mkIf cfg.enable { services.postgresqlBackup = { enable = true; + backupAll = true; location = "/var/backup/postgresql"; };