nixos/doc: remove refs to slim

This commit is contained in:
worldofpeace 2019-11-11 16:22:36 -05:00
parent ce26b3eaf0
commit 3d256326ab
2 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@
can select an alternative one by picking one of the following lines: can select an alternative one by picking one of the following lines:
<programlisting> <programlisting>
<xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true; <xref linkend="opt-services.xserver.displayManager.sddm.enable"/> = true;
<xref linkend="opt-services.xserver.displayManager.slim.enable"/> = true; <xref linkend="opt-services.xserver.displayManager.gdm.enable"/> = true;
</programlisting> </programlisting>
</para> </para>
<para> <para>

View File

@ -99,7 +99,7 @@ xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
<para> <para>
As an example, we will take the case of display managers. There is a central As an example, we will take the case of display managers. There is a central
display manager module for generic display manager options and a module file display manager module for generic display manager options and a module file
per display manager backend (slim, sddm, gdm ...). per display manager backend (sddm, gdm ...).
</para> </para>
<para> <para>
@ -146,7 +146,7 @@ xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
/>), and to extend />), and to extend
it in each backend module it in each backend module
(<xref (<xref
linkend='ex-option-declaration-eot-backend-slim' />, linkend='ex-option-declaration-eot-backend-gdm' />,
<xref <xref
linkend='ex-option-declaration-eot-backend-sddm' />). linkend='ex-option-declaration-eot-backend-sddm' />).
</para> </para>
@ -167,11 +167,11 @@ services.xserver.displayManager.enable = mkOption {
};</screen> };</screen>
</example> </example>
<example xml:id='ex-option-declaration-eot-backend-slim'> <example xml:id='ex-option-declaration-eot-backend-gdm'>
<title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>slim</literal> module</title> <title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>gdm</literal> module</title>
<screen> <screen>
services.xserver.displayManager.enable = mkOption { services.xserver.displayManager.enable = mkOption {
type = with types; nullOr (enum [ "slim" ]); type = with types; nullOr (enum [ "gdm" ]);
};</screen> };</screen>
</example> </example>