about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-08 22:09:49 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-08 22:09:49 +0100
commitad7edda3e2386c8c5e54fd6c91e848f50b237696 (patch)
treed90407e11366bd6b155d7ba3cad22ca5557c9835 /nixos/doc
parent5f3708016ca0ef547d3fb79a521e9d5bad15d454 (diff)
parent366b54b81097701b05276d1b9b63622c558abe17 (diff)
downloadnixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar.gz
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar.bz2
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar.lz
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar.xz
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.tar.zst
nixlib-ad7edda3e2386c8c5e54fd6c91e848f50b237696.zip
Merge branch 'master' into staging-next
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2405.section.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md
index ebc67e98b193..567b241f0c38 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -40,6 +40,9 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
 
 - Cinnamon has been updated to 6.0. Please beware that the [Wayland session](https://blog.linuxmint.com/?p=4591) is still experimental in this release.
 
+- `services.postgresql.extraPlugins` changed its type from just a list of packages to also a function that returns such a list.
+  For example a config line like ``services.postgresql.extraPlugins = with pkgs.postgresql_11.pkgs; [ postgis ];`` is recommended to be changed to ``services.postgresql.extraPlugins = ps: with ps; [ postgis ];``;
+
 - Programs written in [Nim](https://nim-lang.org/) are built with libraries selected by lockfiles.
   The `nimPackages` and `nim2Packages` sets have been removed.
   See https://nixos.org/manual/nixpkgs/unstable#nim for more information.