10 lines
175 B
Nix
10 lines
175 B
Nix
{
|
|
services.postgresql = {
|
|
enable = true;
|
|
settings = {
|
|
max_connections = "300";
|
|
effective_cache_size = "4GB";
|
|
shared_buffers = "4GB";
|
|
};
|
|
};
|
|
}
|