···57 new versions will release.
58 </para>
59 </listitem>
00000000060 </itemizedlist>
61 </section>
62 <section xml:id="sec-release-22.05-notable-changes">
···57 new versions will release.
58 </para>
59 </listitem>
60+ <listitem>
61+ <para>
62+ The <literal>wafHook</literal> hook now honors
63+ <literal>NIX_BUILD_CORES</literal> when
64+ <literal>enableParallelBuilding</literal> is not set
65+ explicitly. Packages can restore the old behaviour by setting
66+ <literal>enableParallelBuilding=false</literal>.
67+ </para>
68+ </listitem>
69 </itemizedlist>
70 </section>
71 <section xml:id="sec-release-22.05-notable-changes">
+4-2
nixos/doc/manual/release-notes/rl-2205.section.md
···1011## Backward Incompatibilities {#sec-release-22.05-incompatibilities}
1213-* `pkgs.ghc` now refers to `pkgs.targetPackages.haskellPackages.ghc`.
14 This *only* makes a difference if you are cross-compiling and will
15 ensure that `pkgs.ghc` always runs on the host platform and compiles
16 for the target platform (similar to `pkgs.gcc` for example).
···22 instead to ensure cross compilation keeps working (or switch to
23 `haskellPackages.callPackage`).
2425-* `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated.
26 The packages in the top level of `pkgs.emacsPackages`, such as org and
27 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and
28 `pkgs.emacsPackages.nongnuPackages` where the new versions will release.
002930## Other Notable Changes {#sec-release-22.05-notable-changes}
···1011## Backward Incompatibilities {#sec-release-22.05-incompatibilities}
1213+- `pkgs.ghc` now refers to `pkgs.targetPackages.haskellPackages.ghc`.
14 This *only* makes a difference if you are cross-compiling and will
15 ensure that `pkgs.ghc` always runs on the host platform and compiles
16 for the target platform (similar to `pkgs.gcc` for example).
···22 instead to ensure cross compilation keeps working (or switch to
23 `haskellPackages.callPackage`).
2425+- `pkgs.emacsPackages.orgPackages` is removed because org elpa is deprecated.
26 The packages in the top level of `pkgs.emacsPackages`, such as org and
27 org-contrib, refer to the ones in `pkgs.emacsPackages.elpaPackages` and
28 `pkgs.emacsPackages.nongnuPackages` where the new versions will release.
29+30+- The `wafHook` hook now honors `NIX_BUILD_CORES` when `enableParallelBuilding` is not set explicitly. Packages can restore the old behaviour by setting `enableParallelBuilding=false`.
3132## Other Notable Changes {#sec-release-22.05-notable-changes}
···18 /dev/hwbinder = hidl
19 '';
2021+in
22+{
2324 options.virtualisation.waydroid = {
25 enable = mkEnableOption "Waydroid";
···36 (isEnabled "ANDROID_BINDERFS")
37 (isEnabled "ASHMEM")
38 ];
39+40+ /* NOTE: we always enable this flag even if CONFIG_PSI_DEFAULT_DISABLED is not on
41+ as reading the kernel config is not always possible and on kernels where it's
42+ already on it will be no-op
43+ */
44+ boot.kernelParams = [ "psi=1" ];
4546 environment.etc."gbinder.d/waydroid.conf".source = waydroidGbinderConf;
47