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:
commit
bcfa2a020c
1 changed files with 1 additions and 1 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue