infra/hosts/nachtigall/apps/postgresql.nix

14 lines
202 B
Nix

{ ... }:
{
services.postgresql.enable = true;
systemd.services.postgresql = {
after = [
"var-lib-postgresql.mount"
];
requisite = [
"var-lib-postgresql.mount"
];
};
}