0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

nixos/matrix-synapse: enable jemalloc by default

The official docker image has been defaulting to the jemalloc memory
allocator for years.
This commit is contained in:
Martin Weinelt 2024-12-30 17:55:33 +01:00
parent e6f67cc259
commit 51d11cae99
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 3 additions and 1 deletions

View file

@ -705,7 +705,7 @@ in
withJemalloc = mkOption {
type = types.bool;
default = false;
default = true;
description = ''
Whether to preload jemalloc to reduce memory fragmentation and overall usage.
'';