Merge pull request from nix-community/lewo/pg

hydra: increase Postgresql cache size
This commit is contained in:
Ryan Mulligan 2020-10-21 13:18:35 -07:00 committed by GitHub
commit cf6757cb4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,6 +105,14 @@ in {
'';
};
services.postgresql = {
enable = true;
extraConfig = ''
shared_buffers = 4GB
effective_cache_size = 4GB
'';
};
nix = {
distributedBuilds = true;
extraOptions = ''