postgresql-backup: move to own services

This way the `startAt` setting is only set once.
This commit is contained in:
Antoine Martin 2021-01-30 22:15:33 +01:00
parent 297eb0a6f9
commit 253530ea6f
5 changed files with 28 additions and 5 deletions

View file

@ -13,6 +13,7 @@ with lib;
let
cfg = config.my.services.matrix;
my = config.my;
federationPort = { public = 8448; private = 11338; };
clientPort = { public = 443; private = 11339; };
@ -28,11 +29,8 @@ in {
package = pkgs.postgresql_12;
};
services.postgresqlBackup = {
enable = true;
services.postgresqlBackup = mkIf my.services.postgresql-backup.enable {
databases = [ "matrix-synapse" ];
# Borg backup starts at midnight so create DB dump just before
startAt = "*-*-* 23:30:00";
};
services.matrix-synapse = {