about summary refs log tree commit diff
path: root/nixos/doc/manual/development
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-11 16:22:36 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2019-11-11 17:10:41 -0500
commit3d256326ab875111765e26e421995f1a07143201 (patch)
tree3f151bf5fb711aec1347e1a117b8d5fb15166012 /nixos/doc/manual/development
parentce26b3eaf000f4be9803d299bdb4d27af18d6ed5 (diff)
downloadnixlib-3d256326ab875111765e26e421995f1a07143201.tar
nixlib-3d256326ab875111765e26e421995f1a07143201.tar.gz
nixlib-3d256326ab875111765e26e421995f1a07143201.tar.bz2
nixlib-3d256326ab875111765e26e421995f1a07143201.tar.lz
nixlib-3d256326ab875111765e26e421995f1a07143201.tar.xz
nixlib-3d256326ab875111765e26e421995f1a07143201.tar.zst
nixlib-3d256326ab875111765e26e421995f1a07143201.zip
nixos/doc: remove refs to slim
Diffstat (limited to 'nixos/doc/manual/development')
-rw-r--r--nixos/doc/manual/development/option-declarations.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/doc/manual/development/option-declarations.xml b/nixos/doc/manual/development/option-declarations.xml
index eee81bf64263..56ebf4816306 100644
--- a/nixos/doc/manual/development/option-declarations.xml
+++ b/nixos/doc/manual/development/option-declarations.xml
@@ -99,7 +99,7 @@ xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
   <para>
    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
-   per display manager backend (slim, sddm, gdm ...).
+   per display manager backend (sddm, gdm ...).
   </para>
 
   <para>
@@ -146,7 +146,7 @@ xlink:href="https://nixos.org/nixpkgs/manual/#sec-package-naming">
       />), and to extend
    it in each backend module
    (<xref
-      linkend='ex-option-declaration-eot-backend-slim' />,
+      linkend='ex-option-declaration-eot-backend-gdm' />,
    <xref
       linkend='ex-option-declaration-eot-backend-sddm' />).
   </para>
@@ -167,11 +167,11 @@ services.xserver.displayManager.enable = mkOption {
 };</screen>
   </example>
 
-  <example xml:id='ex-option-declaration-eot-backend-slim'>
-   <title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>slim</literal> module</title>
+  <example xml:id='ex-option-declaration-eot-backend-gdm'>
+   <title>Extending <literal>services.xserver.displayManager.enable</literal> in the <literal>gdm</literal> module</title>
 <screen>
 services.xserver.displayManager.enable = mkOption {
-  type = with types; nullOr (enum [ "slim" ]);
+  type = with types; nullOr (enum [ "gdm" ]);
 };</screen>
   </example>