nbxplorer: use postgresql

The former DBTrie backend has been deprecated.
This commit is contained in:
Erik Arvstedt 2022-04-30 15:35:46 +02:00 committed by Jonas Nick
parent 29d2ffc111
commit 7de56b019f
No known key found for this signature in database
GPG key ID: 4861DBF262123605
4 changed files with 29 additions and 8 deletions

View file

@ -121,6 +121,8 @@ in {
fi
'';
services.backups.postgresqlDatabases = mkIf config.services.btcpayserver.enable [ "btcpaydb" ];
services.backups.postgresqlDatabases = mkIf config.services.btcpayserver.enable (
[ "btcpaydb" ] ++ optional cfg.with-bulk-data "nbxplorer"
);
};
}