summaryrefslogtreecommitdiff
path: root/gnu/services
diff options
context:
space:
mode:
authorMathieu Othacehe <m.othacehe@gmail.com>2018-10-28 11:01:03 +0900
committerMathieu Othacehe <m.othacehe@gmail.com>2018-11-07 18:15:00 +0900
commitf4e8bc5f250bcf5f7daf5eb28b0b9f1131e4ac61 (patch)
tree032a69f85c7ccb8cd513b8b077105eea6803b09c /gnu/services
parent581720bc7468374a61bedc000b3a80d5ea2d9336 (diff)
downloadgnu-guix-f4e8bc5f250bcf5f7daf5eb28b0b9f1131e4ac61.tar
gnu-guix-f4e8bc5f250bcf5f7daf5eb28b0b9f1131e4ac61.tar.gz
services: kmscon: Do not switch to vt at start.
* gnu/services/base.scm (kmscon-service-type): Add "--no-switchvt" to kmscon command.
Diffstat (limited to 'gnu/services')
-rw-r--r--gnu/services/base.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 47c7d8bb27..5b30cedde0 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -2057,6 +2057,7 @@ This service is not part of @var{%base-services}."
#~(list
#$(file-append kmscon "/bin/kmscon") "--login"
"--vt" #$virtual-terminal
+ "--no-switchvt" ;Prevent a switch to the virtual terminal.
#$@(if hardware-acceleration? '("--hwaccel") '())
"--" #$login-program #$@login-arguments))