Skip to content

Commit bcfa2a0

Browse files
nixos/postgresql: fix merging of shared_preload_libraries option (#388754)
2 parents a148653 + 8bf1e13 commit bcfa2a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/databases/postgresql.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ in
439439
]);
440440
options = {
441441
shared_preload_libraries = mkOption {
442-
type = nullOr (coercedTo (listOf str) (concatStringsSep ", ") str);
442+
type = nullOr (coercedTo (listOf str) (concatStringsSep ",") commas);
443443
default = null;
444444
example = literalExpression ''[ "auto_explain" "anon" ]'';
445445
description = ''

0 commit comments

Comments
 (0)