summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-11 21:41:42 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-11 22:36:49 +0100
commit594340bc79586f6880231b52fc94d100309fec45 (patch)
treed561b97dac10988714014becfa77635c67101f2c /gnu
parent380f2ab6a42d33525b98887ee4afb04f24beeedc (diff)
downloadguix-patches-594340bc79586f6880231b52fc94d100309fec45.tar
guix-patches-594340bc79586f6880231b52fc94d100309fec45.tar.gz
services: xorg: Don't pass "-ac" to X.
This had pretty much no effects given "-nolisten tcp". * gnu/services/xorg.scm (xorg-start-command): Remove "-ac" option.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/services/xorg.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm
index 39e76febeb..e3506bf8bf 100644
--- a/gnu/services/xorg.scm
+++ b/gnu/services/xorg.scm
@@ -118,7 +118,7 @@ EndSection
(apply execl (string-append #$xorg-server "/bin/X")
(string-append #$xorg-server "/bin/X") ;argv[0]
- "-ac" "-logverbose" "-verbose"
+ "-logverbose" "-verbose"
"-xkbdir" (string-append #$xkeyboard-config "/share/X11/xkb")
"-config" #$config
"-nolisten" "tcp" "-terminate"