manual: minor cleanups

Changed files
+4 -4
nixos
doc
manual
configuration
development
+1 -1
nixos/doc/manual/configuration/linux-kernel.xml
···
<para>The default Linux kernel configuration should be fine for most users. You can see the configuration of your current kernel with the following command:
<programlisting>
-
cat /proc/config.gz | gunzip
</programlisting>
If you want to change the kernel configuration, you can use the
<option>packageOverrides</option> feature (see <xref
···
<para>The default Linux kernel configuration should be fine for most users. You can see the configuration of your current kernel with the following command:
<programlisting>
+
zcat /proc/config.gz
</programlisting>
If you want to change the kernel configuration, you can use the
<option>packageOverrides</option> feature (see <xref
+3 -3
nixos/doc/manual/development/option-declarations.xml
···
<title>Option Declarations</title>
<para>An option declaration specifies the name, type and description
-
of a NixOS configuration option. It is illegal to define an option
-
that hasn’t been declared in any module. A option declaration
generally looks like this:
<programlisting>
···
<listitem>
<para>The default value used if no value is defined by any
module. A default is not required; in that case, if the option
-
value is ever used, an error will be thrown.</para>
</listitem>
</varlistentry>
···
<title>Option Declarations</title>
<para>An option declaration specifies the name, type and description
+
of a NixOS configuration option. It is invalid to define an option
+
that hasn’t been declared in any module. An option declaration
generally looks like this:
<programlisting>
···
<listitem>
<para>The default value used if no value is defined by any
module. A default is not required; in that case, if the option
+
value is never used, an error will be thrown.</para>
</listitem>
</varlistentry>