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