···5757 </listitem>
5858 <listitem>
5959 <para>
6060+ KDE Plasma now finally works on Wayland.
6161+ </para>
6262+ </listitem>
6363+ <listitem>
6464+ <para>
6065 bash now defaults to major version 5.
6166 </para>
6267 </listitem>
···11041109 by default. Both packages now support an
11051110 <literal>enableUnfree</literal> option to re-enable this
11061111 functionality.
11121112+ </para>
11131113+ </listitem>
11141114+ <listitem>
11151115+ <para>
11161116+ <literal>services.xserver.displayManager.defaultSession = "plasma5"</literal>
11171117+ does not work anymore, instead use either
11181118+ <literal>"plasma"</literal> for the Plasma X11
11191119+ session or <literal>"plasmawayland"</literal> for
11201120+ the Plasma Wayland sesison.
11211121+ </para>
11221122+ </listitem>
11231123+ <listitem>
11241124+ <para>
11251125+ <literal>boot.kernelParams</literal> now only accepts one
11261126+ command line parameter per string. This change is aimed to
11271127+ reduce common mistakes like <quote>param = 12</quote>, which
11281128+ would be parsed as 3 parameters.
11071129 </para>
11081130 </listitem>
11091131 </itemizedlist>
+2
nixos/doc/manual/release-notes/rl-2111.section.md
···346346- `opencv2` no longer includes the non-free libraries by default, and consequently `pfstools` no longer includes OpenCV support by default. Both packages now support an `enableUnfree` option to re-enable this functionality.
347347- `services.xserver.displayManager.defaultSession = "plasma5"` does not work anymore, instead use either `"plasma"` for the Plasma X11 session or `"plasmawayland"` for the Plasma Wayland sesison.
348348349349+- `boot.kernelParams` now only accepts one command line parameter per string. This change is aimed to reduce common mistakes like "param = 12", which would be parsed as 3 parameters.
350350+349351## Other Notable Changes {#sec-release-21.11-notable-changes}
350352351353
+1-1
nixos/modules/services/networking/unifi.nix
···221221222222 };
223223224224- meta.maintainers = with lib.maintainers; [ erictapen ];
224224+ meta.maintainers = with lib.maintainers; [ erictapen pennae ];
225225}
···2626 passthru = {
2727 updateScript = gnome.updateScript {
2828 packageName = pname;
2929- versionPolicy = "odd-unstable";
2929+ versionPolicy = "none"; # Should be odd-unstable but stable version has not been released yet.
3030 };
3131 };
3232
···11-commit c44347b3b813e209fff537b4d46d23430727a5e2
22-Author: Bernardo Meurer <meurerbernardo@gmail.com>
33-Date: Tue Feb 25 21:27:39 2020 -0800
4152 makefile: correctly sed paths
66-33+74 The default Makefile for tlp makes a mess with catenating `DESTDIR` to
85 everything, but then not actualy using the catenated (_ prefixed)
96 variables to sed it's `.in` files.
1010-77+118 This patch makes sure that it correctly sets the paths, taking `DESTDIR`
129 in account where it makes sense (e.g. /bin where we want $out/bin) but
1310 not where it doesn't (/etc/tlp.conf should be just that).
1414-1111+1512 The reason DESTDIR is used at all, as opposed to the more appropriate
1613 PREFIX, is covered in the nix formula, and is (also) due to the Makefile
1714 being a bit "different."
18151916diff --git a/Makefile b/Makefile
2020-index b5af74e..95122df 100644
1717+index e9bbab4..6b66651 100644
2118--- a/Makefile
2219+++ b/Makefile
2323-@@ -47,17 +47,17 @@ _TPACPIBAT = $(DESTDIR)$(TPACPIBAT)
2020+@@ -51,19 +51,19 @@ _TPACPIBAT = $(DESTDIR)$(TPACPIBAT)
24212522 SED = sed \
2623 -e "s|@TLPVER@|$(TLPVER)|g" \
···2825- -e "s|@TLP_TLIB@|$(TLP_TLIB)|g" \
2926- -e "s|@TLP_FLIB@|$(TLP_FLIB)|g" \
3027- -e "s|@TLP_ULIB@|$(TLP_ULIB)|g" \
2828+- -e "s|@TLP_BATD@|$(TLP_BATD)|g" \
3129+ -e "s|@TLP_SBIN@|$(_SBIN)|g" \
3230+ -e "s|@TLP_TLIB@|$(_TLIB)|g" \
3331+ -e "s|@TLP_FLIB@|$(_FLIB)|g" \
3432+ -e "s|@TLP_ULIB@|$(_ULIB)|g" \
3333++ -e "s|@TLP_BATD@|$(_BATD)|g" \
3534 -e "s|@TLP_CONFUSR@|$(TLP_CONFUSR)|g" \
3635 -e "s|@TLP_CONFDIR@|$(TLP_CONFDIR)|g" \
3736- -e "s|@TLP_CONFDEF@|$(TLP_CONFDEF)|g" \
3737+- -e "s|@TLP_CONFREN@|$(TLP_CONFREN)|g" \
3838+ -e "s|@TLP_CONFDEF@|$(_CONFDEF)|g" \
3939++ -e "s|@TLP_CONFREN@|$(_CONFREN)|g" \
3940 -e "s|@TLP_CONF@|$(TLP_CONF)|g" \
4041 -e "s|@TLP_RUN@|$(TLP_RUN)|g" \
4142 -e "s|@TLP_VAR@|$(TLP_VAR)|g" \