nixos/hosts/homelab/postgres.nix
2025-04-23 00:02:00 +02:00

8 lines
No EOL
185 B
Nix

{config, ...}: {
services = {
restic.backups.homelab.paths = [config.services.postgresqlBackup.location];
postgresql.enable = true;
postgresqlBackup.enable = true;
};
}