3
4
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

services: kmscon: Do not switch to vt at start.

* gnu/services/base.scm (kmscon-service-type): Add "--no-switchvt" to kmscon
command.
This commit is contained in:
Mathieu Othacehe 2018-10-28 11:01:03 +09:00
parent 581720bc74
commit f4e8bc5f25
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -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))