Skip to content

Commit

Permalink
nixos/postgresql: fix merging of shared_preload_libraries option (#38…
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Mar 10, 2025
2 parents a148653 + 8bf1e13 commit bcfa2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/databases/postgresql.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down

0 comments on commit bcfa2a0

Please sign in to comment.