about summary refs log tree commit diff
path: root/nixos/tests/timescaledb.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/timescaledb.nix
parent4fe5824fc7b26c8b4451fc39756c426109ffad31 (diff)
treewide: fix services.postgresql.extraPlugins usage
Diffstat (limited to 'nixos/tests/timescaledb.nix')
-rw-r--r--nixos/tests/timescaledb.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/timescaledb.nix b/nixos/tests/timescaledb.nix
index 00a7f9af09fb8..ba0a3cec6076f 100644
--- a/nixos/tests/timescaledb.nix
+++ b/nixos/tests/timescaledb.nix
@@ -52,7 +52,7 @@ let
         services.postgresql = {
           enable = true;
           package = postgresql-package;
-          extraPlugins = with postgresql-package.pkgs; [
+          extraPlugins = ps: with ps; [
             timescaledb
             timescaledb_toolkit
           ];