From 612a1bae694301a6e3baadf937c67b4579d93f7c Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 23 Dec 2024 18:34:16 +0100 Subject: [PATCH] postgres: use new extensions option --- system/nixos/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/nixos/postgresql.nix b/system/nixos/postgresql.nix index 2e8ad7d..649f330 100644 --- a/system/nixos/postgresql.nix +++ b/system/nixos/postgresql.nix @@ -6,7 +6,7 @@ package = pkgs.postgresql_16_jit; enableJIT = true; - extraPlugins = ps: with ps; [ + extensions = ps: with ps; [ pgroonga ];