infra/hosts/build03/postgresql.nix

11 lines
175 B
Nix
Raw Normal View History

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