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

nixos/postgresql: fix merging of shared_preload_libraries option (#388754)

This commit is contained in:
Sandro 2025-03-10 19:32:38 +01:00 committed by GitHub
commit bcfa2a020c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -439,7 +439,7 @@ in
]); ]);
options = { options = {
shared_preload_libraries = mkOption { shared_preload_libraries = mkOption {
type = nullOr (coercedTo (listOf str) (concatStringsSep ", ") str); type = nullOr (coercedTo (listOf str) (concatStringsSep ",") commas);
default = null; default = null;
example = literalExpression ''[ "auto_explain" "anon" ]''; example = literalExpression ''[ "auto_explain" "anon" ]'';
description = '' description = ''