summaryrefslogtreecommitdiffstats
path: root/nixos/doc/manual/from_md/release-notes/rl-1509.section.xml
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/doc/manual/from_md/release-notes/rl-1509.section.xml')
-rw-r--r--nixos/doc/manual/from_md/release-notes/rl-1509.section.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/nixos/doc/manual/from_md/release-notes/rl-1509.section.xml b/nixos/doc/manual/from_md/release-notes/rl-1509.section.xml
index 2420747da08e..96b51a051066 100644
--- a/nixos/doc/manual/from_md/release-notes/rl-1509.section.xml
+++ b/nixos/doc/manual/from_md/release-notes/rl-1509.section.xml
@@ -42,7 +42,7 @@
</para>
</listitem>
</itemizedlist>
- <programlisting language="bash">
+ <programlisting language="nix">
{
system.autoUpgrade.enable = true;
}
@@ -432,7 +432,7 @@
</para>
</listitem>
</itemizedlist>
- <programlisting language="bash">
+ <programlisting language="nix">
{
system.stateVersion = &quot;14.12&quot;;
}
@@ -523,7 +523,7 @@
</para>
</listitem>
</itemizedlist>
- <programlisting language="bash">
+ <programlisting language="nix">
{
fileSystems.&quot;/shiny&quot; = {
device = &quot;myshinysharedfolder&quot;;
@@ -662,7 +662,7 @@ infinite recursion encountered
<literal>lib</literal>, after adding it as argument of the
module. The following module
</para>
- <programlisting language="bash">
+ <programlisting language="nix">
{ config, pkgs, ... }:
with pkgs.lib;
@@ -677,7 +677,7 @@ with pkgs.lib;
<para>
should be modified to look like:
</para>
- <programlisting language="bash">
+ <programlisting language="nix">
{ config, pkgs, lib, ... }:
with lib;
@@ -695,7 +695,7 @@ with lib;
replaced by <literal>(import &lt;nixpkgs&gt; {})</literal>. The
following module
</para>
- <programlisting language="bash">
+ <programlisting language="nix">
{ config, pkgs, ... }:
let
@@ -712,7 +712,7 @@ in
<para>
should be modified to look like:
</para>
- <programlisting language="bash">
+ <programlisting language="nix">
{ config, pkgs, ... }:
let