summary refs log tree commit diff
path: root/modules/services/x11/xserver.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-01-10 01:41:22 +0100
committeraszlig <aszlig@redmoonstudios.org>2013-01-10 01:43:44 +0100
commit80a381f521bae87aea47d7657d368167b0b42e91 (patch)
treeb3c30816e532460519858799f905bd650f6e2d87 /modules/services/x11/xserver.nix
parent0129717b17e982d714ea93edc9d35898a27275ad (diff)
downloadnixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar.gz
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar.bz2
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar.lz
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar.xz
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.tar.zst
nixlib-80a381f521bae87aea47d7657d368167b0b42e91.zip
Revert "xserver: Allow to add extra options ...
This reverts commit 1e741f1572b6793b861e2f9820015475ce339ae0 as it is
unnecessary according to @edolstra, because services.xserver.config from another
module will be merged into the configuration.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/services/x11/xserver.nix')
-rw-r--r--modules/services/x11/xserver.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/services/x11/xserver.nix b/modules/services/x11/xserver.nix
index d78a8787e79c..c1b14940f02a 100644
--- a/modules/services/x11/xserver.nix
+++ b/modules/services/x11/xserver.nix
@@ -326,25 +326,6 @@ in
         description = "Lines to be added to every Display subsection of the Screen section.";
       };
 
-      extraXorgOptions = mkOption {
-        default = "";
-        example = ''
-          Section "Monitor"
-            Identifier "left monitor"
-          EndSection
-
-          Section "Monitor"
-            Identifier "right monitor"
-            Option "RightOf" "left monitor"
-          EndSection
-        '';
-        type = types.string;
-        description = ''
-          Additional options you want to append to your X server configuration
-          file.
-        '';
-      };
-
       defaultDepth = mkOption {
         default = 0;
         example = 8;
@@ -619,7 +600,6 @@ in
         '')}
 
         ${xrandrMonitorSections}
-        ${cfg.extraXorgOptions}
       '';
 
   });