summaryrefslogtreecommitdiffstats
path: root/nixos/doc/manual/release-notes/rl-2103.xml
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/doc/manual/release-notes/rl-2103.xml')
-rw-r--r--nixos/doc/manual/release-notes/rl-2103.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2103.xml b/nixos/doc/manual/release-notes/rl-2103.xml
index e46d1ca403f3..24a0281310c6 100644
--- a/nixos/doc/manual/release-notes/rl-2103.xml
+++ b/nixos/doc/manual/release-notes/rl-2103.xml
@@ -420,6 +420,26 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
</listitem>
<listitem>
<para>
+ The attribute <varname>mpi</varname> is now consistently used to
+ provide a default, system-wide MPI implementation.
+ The default implementation is openmpi, which has been used before by
+ all derivations affects by this change.
+ Note that all packages that have used <varname>mpi ? null</varname> in the input
+ for optional MPI builds, have been changed to the boolean input paramater
+ <varname>useMpi</varname> to enable building with MPI.
+
+ Building all packages with <varname>mpich</varname> instead
+ of the default <varname>openmpi</varname> can now be achived like this:
+ <programlisting>
+self: super:
+{
+ mpi = super.mpich;
+}
+ </programlisting>
+ </para>
+ </listitem>
+ <listitem>
+ <para>
The Searx module has been updated with the ability to configure the
service declaratively and uWSGI integration.
The option <literal>services.searx.configFile</literal> has been renamed
@@ -430,6 +450,22 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
dynamically allocated uid.
</para>
</listitem>
+ <listitem>
+ <para>
+ The libinput module has been updated with the ability to configure mouse and touchpad settings separately.
+ The options in <literal>services.xserver.libinput</literal> have been renamed to <literal>services.xserver.libinput.touchpad</literal>,
+ while there is a new <literal>services.xserver.libinput.mouse</literal> for mouse related configuration.
+ </para>
+ <para>
+ Since touchpad options no longer apply to all devices, you may want to replicate your touchpad configuration in
+ mouse section.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ ALSA OSS emulation (<varname>sound.enableOSSEmulation</varname>) is now disabled by default.
+ </para>
+ </listitem>
</itemizedlist>
</section>
@@ -576,6 +612,15 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
</listitem>
<listitem>
<para>
+ In the ACME module, the data used to build the hash for the account
+ directory has changed to accomodate new features to reduce account
+ rate limit issues. This will trigger new account creation on the first
+ rebuild following this update. No issues are expected to arise from this,
+ thanks to the new account creation handling.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
<xref linkend="opt-users.users._name_.createHome" /> now always ensures home directory permissions to be <literal>0700</literal>.
Permissions had previously been ignored for already existing home directories, possibly leaving them readable by others.
The option's description was incorrect regarding ownership management and has been simplified greatly.
@@ -592,6 +637,22 @@ http://some.json-exporter.host:7979/probe?target=https://example.com/some/json/e
<literal>/etc/netgroup</literal> defines network-wide groups and may affect to setups using NIS.
</para>
</listitem>
+ <listitem>
+ <para>
+ Platforms, like <varname>stdenv.hostPlatform</varname>, no longer have a <varname>platform</varname> attribute.
+ It has been (mostly) flattoned away:
+ </para>
+ <itemizedlist>
+ <listitem><para><varname>platform.gcc</varname> is now <varname>gcc</varname></para></listitem>
+ <listitem><para><literal>platform.kernel*</literal> is now <literal>linux-kernel.*</literal></para></listitem>
+ </itemizedlist>
+ <para>
+ Additionally, <varname>platform.kernelArch</varname> moved to the top level as <varname>linuxArch</varname> to match the other <literal>*Arch</literal> variables.
+ </para>
+ <para>
+ The <varname>platform</varname> grouping of these things never meant anything, and was just a historial/implementation artifact that was overdue removal.
+ </para>
+ </listitem>
</itemizedlist>
</section>
</section>