about summary refs log tree commit diff
path: root/nixos/tests/pgjwt.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-09-26 22:49:44 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-12-08 14:58:18 +0100
commit3bb72ed9fd3af8bc59c5c2abd649dec544370720 (patch)
tree2ff70437ef6390332b241c1fa5b049e3e2d437a4 /nixos/tests/pgjwt.nix
parent4fe5824fc7b26c8b4451fc39756c426109ffad31 (diff)
treewide: fix services.postgresql.extraPlugins usage
Diffstat (limited to 'nixos/tests/pgjwt.nix')
-rw-r--r--nixos/tests/pgjwt.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/pgjwt.nix b/nixos/tests/pgjwt.nix
index 4793a3e315031..8d3310b74eb3b 100644
--- a/nixos/tests/pgjwt.nix
+++ b/nixos/tests/pgjwt.nix
@@ -11,7 +11,7 @@ with pkgs; {
     {
       services.postgresql = {
         enable = true;
-        extraPlugins = [ pgjwt pgtap ];
+        extraPlugins = ps: with ps; [ pgjwt pgtap ];
       };
     };
   };