From 80a381f521bae87aea47d7657d368167b0b42e91 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 10 Jan 2013 01:41:22 +0100 Subject: [PATCH] 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 --- modules/services/x11/xserver.nix | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/modules/services/x11/xserver.nix b/modules/services/x11/xserver.nix index d78a8787e79..c1b14940f02 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} ''; });