0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 08:31:01 +03:00

nixos/postgresql: update docs with extraPlugins to extensions rename

(cherry picked from commit 3156de49ba)
This commit is contained in:
Sandro 2024-11-22 15:48:08 +01:00 committed by github-actions[bot]
parent de0d790e78
commit 215a5c819a

View file

@ -290,11 +290,11 @@ postgresql_15.pkgs.pg_partman postgresql_15.pkgs.pgroonga
...
```
To add plugins via NixOS configuration, set `services.postgresql.extraPlugins`:
To add plugins via NixOS configuration, set `services.postgresql.extensions`:
```nix
{
services.postgresql.package = pkgs.postgresql_17;
services.postgresql.extraPlugins = ps: with ps; [
services.postgresql.extensions = ps: with ps; [
pg_repack
postgis
];