nix-config/hosts/diva/features/backups.nix
2025-05-07 20:10:55 +02:00

24 lines
442 B
Nix

{ ... }:
{
services.borgmatic = {
enable = true;
configurations = {
storageBox = {
postgresql_databases = [
{ name = "nextcloud"; }
];
};
};
};
systemd.timers."borgmatic" = {
enable = true;
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "*-*-* 03:00:00";
Persistent = true;
WakeSystem = true;
Unit = "borgmatic.service";
};
};
}