about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2023-12-08 21:50:57 +0100
committerGitHub <noreply@github.com>2023-12-08 21:50:57 +0100
commit5322e1313e3c2b1458eed014b9f927e751c05a9a (patch)
treec7ea342de8f4b1d083930f96037db3f1c083c3f2 /nixos
parent824e3c17a63df7b01d717c62e551f3f8624fea45 (diff)
downloadnixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar.gz
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar.bz2
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar.lz
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar.xz
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.tar.zst
nixlib-5322e1313e3c2b1458eed014b9f927e751c05a9a.zip
Update nixos/doc/manual/release-notes/rl-2405.section.md
Diffstat (limited to 'nixos')
-rw-r--r--nixos/doc/manual/release-notes/rl-2405.section.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2405.section.md b/nixos/doc/manual/release-notes/rl-2405.section.md
index 5c188ee3fadb..a3e69102b0f2 100644
--- a/nixos/doc/manual/release-notes/rl-2405.section.md
+++ b/nixos/doc/manual/release-notes/rl-2405.section.md
@@ -38,8 +38,8 @@ 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 a list of packages to a function that returns the former.
-  For example a config line like ``services.postgresql.extraPlugins = with pkgs.postgresql_11.pkgs; [ postgis ];`` would need to be changed to ``services.postgresql.extraPlugins = ps: with ps; [ postgis ];``;
+- `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.