set postgresql backup to hourly

This commit is contained in:
cy 2024-12-20 03:08:11 -05:00
parent 47844f306f
commit bf13844ac2

View file

@ -19,5 +19,8 @@
host all all 172.18.0.0/16 trust host all all 172.18.0.0/16 trust
''; '';
}; };
services.postgresqlBackup.enable = true; services.postgresqlBackup = {
enable = true;
startAt = "hourly";
};
} }