infra/hosts/build03/postgresql.nix
zowoq b01030c2f0 build03/postgresql: move from modules/hydra
remove ensureDatabases as it isn't compatible with the hydra module
2023-12-03 22:09:02 +00:00

10 lines
175 B
Nix

{
services.postgresql = {
enable = true;
settings = {
max_connections = "300";
effective_cache_size = "4GB";
shared_buffers = "4GB";
};
};
}