Unverified Commit bcfa2a02 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

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

parents a148653c 8bf1e138
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 = ''