summary refs log tree commit diff
path: root/nixos/doc/manual
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmi@gmail.com>2017-02-21 14:56:26 +0100
committerGitHub <noreply@github.com>2017-02-21 14:56:26 +0100
commit361d730f35773764199cfe1e50980d7d209b3246 (patch)
tree4910a515404d09fef62a75ac8915ae9083f6d895 /nixos/doc/manual
parentc3aa1090413feda4778a95991a46fd566be76fb4 (diff)
downloadnixlib-361d730f35773764199cfe1e50980d7d209b3246.tar
nixlib-361d730f35773764199cfe1e50980d7d209b3246.tar.gz
nixlib-361d730f35773764199cfe1e50980d7d209b3246.tar.bz2
nixlib-361d730f35773764199cfe1e50980d7d209b3246.tar.lz
nixlib-361d730f35773764199cfe1e50980d7d209b3246.tar.xz
nixlib-361d730f35773764199cfe1e50980d7d209b3246.tar.zst
nixlib-361d730f35773764199cfe1e50980d7d209b3246.zip
nixos/manual/xserver: propose more alternatives
Diffstat (limited to 'nixos/doc/manual')
-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>