We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f7e84 commit 6d83326Copy full SHA for 6d83326
nix/ext/tests/pgmq.nix
@@ -47,7 +47,13 @@ self.inputs.nixpkgs.lib.nixos.runTest {
47
services.postgresql = {
48
enable = true;
49
package = (postgresqlWithExtension psql_15);
50
- settings = (installedExtension "15").defaultSettings or { };
+ settings = {
51
+ search_path = "\"$user\", public, auth, extensions";
52
+ };
53
+ initialScript = pkgs.writeText "postgres-init.sql" ''
54
+ CREATE SCHEMA auth;
55
+ CREATE SCHEMA extensions;
56
+ '';
57
};
58
59
specialisation.postgresql17.configuration = {
0 commit comments