From a79afe7deaba059af5c565eb24c4657755636603 Mon Sep 17 00:00:00 2001 From: kalipso Date: Wed, 10 Dec 2025 10:38:27 +0100 Subject: [PATCH] [nextcloud] enable postgresql backup if we need to restore from backup this is necessary since db state from zfs snapshots might be corrupted --- machines/nextcloud/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/machines/nextcloud/configuration.nix b/machines/nextcloud/configuration.nix index 3d4d4a0..521ffa2 100644 --- a/machines/nextcloud/configuration.nix +++ b/machines/nextcloud/configuration.nix @@ -31,6 +31,10 @@ with lib; lokiHost = "10.0.0.14"; }; + services.postgresqlBackup = { + enable = true; + }; + services.nextcloud = { enable = true; package = pkgs.nextcloud31;