nix-config/modules/backup.nix

13 lines
297 B
Nix

{ config, ... }:
{
config.services.postgresqlBackup = {
inherit (config.services.postgresql) enable;
backupAll = true;
compression = "zstd";
# compressionLevel = 9; # TODO: only available with 21.11
pgdumpOptions = "--create --clean";
startAt = "*-*-* 06:00:00";
};
}