help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Has anyone ever used kmscon successfully


From: Mathieu Othacehe
Subject: Re: Has anyone ever used kmscon successfully
Date: Sun, 16 Dec 2018 19:33:37 +0900
User-agent: mu4e 1.0; emacs 26.1

Hi John,

I built the new GuixSD installer upon kmscon. It works pretty well and
is a good alternative to raw linux VT's in my opinion.

> (modify-services
>              %desktop-services
>              ('kmscon c => (kmscon-configuration (virtual-terminal 
> "tty8"))))))

modify-services implies that there's already a kmscon service in
%desktop-services, which is not the case. Plus 'kmscon is not a proper
service type.

You might prefer to write something like (not tested):

--8<---------------cut here---------------start------------->8---
(cons* (service kmscon-service-type
                  (kmscon-configuration
                    (virtual-terminal "tty8")))
        %desktop-services)
--8<---------------cut here---------------end--------------->8---

Mathieu



reply via email to

[Prev in Thread] Current Thread [Next in Thread]