diff --git a/nixos/tests/pgjwt.nix b/nixos/tests/pgjwt.nix index 5af2f38035e9..d186c42a2a98 100644 --- a/nixos/tests/pgjwt.nix +++ b/nixos/tests/pgjwt.nix @@ -17,13 +17,8 @@ with pkgs; { master = { pkgs, config, ... }: { services.postgresql = { - enable = true; - package = postgresql96; - extraPlugins = [ pgjwt pgtap ]; - initialScript = writeText "postgresql-init.sql" - '' - CREATE ROLE postgres WITH superuser login createdb; - ''; + enable = true; + extraPlugins = [ pgjwt pgtap ]; }; }; };