about summary refs log tree commit diff
path: root/nixos/doc/manual/configuration
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-03-05 12:53:38 +0100
committerMatthias Beyer <mail@beyermatthias.de>2017-03-05 14:20:47 +0100
commitc56587eb301b514dff380268876134c5cb841cbe (patch)
treec389c98ee00d30bbb607cfad7c85bdccb099e7cb /nixos/doc/manual/configuration
parentcd18b65432df1ac3888bb63b78c0af19232c8a14 (diff)
downloadnixlib-c56587eb301b514dff380268876134c5cb841cbe.tar
nixlib-c56587eb301b514dff380268876134c5cb841cbe.tar.gz
nixlib-c56587eb301b514dff380268876134c5cb841cbe.tar.bz2
nixlib-c56587eb301b514dff380268876134c5cb841cbe.tar.lz
nixlib-c56587eb301b514dff380268876134c5cb841cbe.tar.xz
nixlib-c56587eb301b514dff380268876134c5cb841cbe.tar.zst
nixlib-c56587eb301b514dff380268876134c5cb841cbe.zip
doc: Remove indention from program listings
Diffstat (limited to 'nixos/doc/manual/configuration')
-rw-r--r--nixos/doc/manual/configuration/xfce.xml30
1 files changed, 15 insertions, 15 deletions
diff --git a/nixos/doc/manual/configuration/xfce.xml b/nixos/doc/manual/configuration/xfce.xml
index af6278e9c920..e9f7bd8d0688 100644
--- a/nixos/doc/manual/configuration/xfce.xml
+++ b/nixos/doc/manual/configuration/xfce.xml
@@ -9,10 +9,10 @@
     <para>
         To enable the Xfce Desktop Environment, set
         <programlisting>
-            services.xserver.desktopManager = {
-                xfce.enable = true;
-                default = "xfce";
-            };
+services.xserver.desktopManager = {
+    xfce.enable = true;
+    default = "xfce";
+};
         </programlisting>
     </para>
 
@@ -20,13 +20,13 @@
         Optionally, <emphasis>compton</emphasis>
         can be enabled for nice graphical effects, some example settings:
         <programlisting>
-            services.compton = {
-              enable          = true;
-              fade            = true;
-              inactiveOpacity = "0.9";
-              shadow          = true;
-              fadeDelta       = 4;
-            };
+services.compton = {
+  enable          = true;
+  fade            = true;
+  inactiveOpacity = "0.9";
+  shadow          = true;
+  fadeDelta       = 4;
+};
         </programlisting>
     </para>
 
@@ -43,7 +43,7 @@
 	   	You can, for example, select KDE’s
         <command>sddm</command> instead:
         <programlisting>
-            services.xserver.displayManager.sddm.enable = true;
+services.xserver.displayManager.sddm.enable = true;
         </programlisting>
     </para>
 
@@ -55,7 +55,7 @@
             <emphasis>Thunar</emphasis>
             volume support, put
             <programlisting>
-                services.xserver.desktopManager.xfce.enable = true;
+services.xserver.desktopManager.xfce.enable = true;
             </programlisting>
             into your <emphasis>configuration.nix</emphasis>.
         </para>
@@ -87,7 +87,7 @@
             (look at journalctl --user -b).
 
             <programlisting>
-                Thunar:2410): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.Private.UDisks2VolumeMonitor is not supported
+Thunar:2410): GVFS-RemoteVolumeMonitor-WARNING **: remote volume monitor with dbus name org.gtk.Private.UDisks2VolumeMonitor is not supported
             </programlisting>
 
             This is caused by some needed GNOME services not running.
@@ -95,7 +95,7 @@
             the Advanced tab of the Session and Startup settings panel.
             Alternatively, you can run this command to do the same thing.
             <programlisting>
-                $ xfconf-query -c xfce4-session -p /compat/LaunchGNOME -s true
+$ xfconf-query -c xfce4-session -p /compat/LaunchGNOME -s true
             </programlisting>
             A log-out and re-log will be needed for this to take effect.
         </para>