summaryrefslogtreecommitdiffstats
path: root/nixos/doc
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-02-22 01:38:25 +0100
committerGitHub <noreply@github.com>2017-02-22 01:38:25 +0100
commit6a044f184119b117c585df8c8a015f4dc4cb4bbc (patch)
tree128152ab89b2f013fc928fcf7e40a4b533a59614 /nixos/doc
parenteb688ac0a70870174b2d1b47feac3080538616bf (diff)
parent361d730f35773764199cfe1e50980d7d209b3246 (diff)
Merge pull request #23045 from Zimmi48/patch-1
nixos/manual/xserver: propose more alternatives
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/configuration/x-windows.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml
index 93d10d19b208..214eec9e1fc4 100644
--- a/nixos/doc/manual/configuration/x-windows.xml
+++ b/nixos/doc/manual/configuration/x-windows.xml
@@ -27,17 +27,21 @@ the following lines:
<programlisting>
services.xserver.desktopManager.kde5.enable = true;
services.xserver.desktopManager.xfce.enable = true;
+services.xserver.desktopManager.gnome3.enable = true;
services.xserver.windowManager.xmonad.enable = true;
services.xserver.windowManager.twm.enable = true;
services.xserver.windowManager.icewm.enable = true;
+services.xserver.windowManager.i3.enable = true;
</programlisting>
</para>
<para>NixOS’s default <emphasis>display manager</emphasis> (the
program that provides a graphical login prompt and manages the X
-server) is SLiM. You can select KDE’s <command>sddm</command> instead:
+server) is SLiM. You can select an alternative one by picking one
+of the following lines:
<programlisting>
services.xserver.displayManager.sddm.enable = true;
+services.xserver.displayManager.lightdm.enable = true;
</programlisting>
</para>