diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-09 23:55:33 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-10 00:35:27 +0200 |
commit | 971436c6bdbeb68cbcc89437cb30b3be61ccae7a (patch) | |
tree | 629edd7cd58d337b760477888fa505dce5e0c52d /gnu | |
parent | 8dbab7125a86481531fa0d92e9166c8475ddc8ac (diff) | |
download | patches-971436c6bdbeb68cbcc89437cb30b3be61ccae7a.tar patches-971436c6bdbeb68cbcc89437cb30b3be61ccae7a.tar.gz |
services: xorg: Remove optional sections from xorg.conf.
* gnu/services/xorg.scm (xorg-start-command)[xserver.conf]: Remove
sections "Monitor", "InputClass", "ServerLayout", "Device", and
"Screen".
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/services/xorg.scm | 27 |
1 files changed, 1 insertions, 26 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index 96bbdd7d1e..c82f4a6aae 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -67,32 +67,7 @@ EndSection Section \"ServerFlags\" Option \"AllowMouseOpenFail\" \"on"" EndSection - -Section \"Monitor\" - Identifier \"Monitor[0]\" -EndSection - -Section \"InputClass\" - Identifier \"Generic keyboard\" - MatchIsKeyboard \"on\" - Option \"XkbRules\" \"base\" - Option \"XkbModel\" \"pc104\" -EndSection - -Section \"ServerLayout\" - Identifier \"Layout\" - Screen \"Screen-vesa\" -EndSection - -Section \"Device\" - Identifier \"Device-vesa\" - Driver \"vesa\" -EndSection - -Section \"Screen\" - Identifier \"Screen-vesa\" - Device \"Device-vesa\" -EndSection")) +")) (mlet %store-monad ((config (xserver.conf))) (define script |