From 24775f65439f1fc53c1d8f2888cd1fcce8ff7b9f Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 23 Mar 2025 15:04:51 +0100 Subject: [PATCH] nixos/postgresql: fix reference to LLVM closure size In fact, the current difference is: - 157M for postgresql to - 756M for postgresql_jit That's a difference of 589M. --- nixos/modules/services/databases/postgresql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/databases/postgresql.md b/nixos/modules/services/databases/postgresql.md index 4144cccac26a..08461547a367 100644 --- a/nixos/modules/services/databases/postgresql.md +++ b/nixos/modules/services/databases/postgresql.md @@ -330,7 +330,7 @@ self: super: { ## JIT (Just-In-Time compilation) {#module-services-postgres-jit} [JIT](https://www.postgresql.org/docs/current/jit-reason.html)-support in the PostgreSQL package -is disabled by default because of the ~300MiB closure-size increase from the LLVM dependency. It +is disabled by default because of the ~600MiB closure-size increase from the LLVM dependency. It can be optionally enabled in PostgreSQL with the following config option: ```nix