From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nils Gillmann Subject: Re: LXDE desktop in config.scm Date: Wed, 19 Sep 2018 08:06:42 +0000 Message-ID: <20180919080642.k3qpwrv47yluoglu@abyayala> References: <20180918214853.GA32214@jasmine.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g2XVv-0002SA-B3 for help-guix@gnu.org; Wed, 19 Sep 2018 04:07:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g2XVr-0003bU-UR for help-guix@gnu.org; Wed, 19 Sep 2018 04:07:11 -0400 Received: from static.195.114.201.195.clients.your-server.de ([195.201.114.195]:58552 helo=conspiracy.of.n0.pm) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g2XVq-0002TQ-RF for help-guix@gnu.org; Wed, 19 Sep 2018 04:07:07 -0400 Content-Disposition: inline In-Reply-To: <20180918214853.GA32214@jasmine.lan> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Leo Famulari Cc: "help-guix@gnu.org" Leo Famulari transcribed 2.3K bytes: > On Tue, Sep 18, 2018 at 04:58:52PM +0000, znavko wrote: > > Here are presented only xfce-desktop-service, gnome-desktop-service, mate-desktop-service, but no lxde. > > These services, which provide desktop using XFCE, GNOME, and MATE, are > defined in the file 'gnu/services/desktop.scm': > > https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/services/desktop.scm > > Currently, we don't have a desktop service for LXDE. > > Maybe a service is not required? It's possible to use i3 without a > desktop service. One just adds 'i3-wm' to the 'packages' field of their > config.scm and it will be available at the login screen. > > > ;; This is where we specify system-wide packages. > > (packages (cons* nss-certs ;for HTTPS access > > gvfs ;for user mounts > > gedit > > icecat > > %base-packages)) > > You could try adding lxde to that list... As far as I know we don't even have a functional LXDE stack? I've been working slowly on lxde + lxqt, none of them in a state where you can log into it. > > > > ;; Add GNOME and/or Xfce---we can choose at the log-in > > ;; screen with F1. Use the "desktop" services, which > > ;; include the X11 log-in service, networking with > > ;; NetworkManager, and more. > > (services (cons* (xfce-desktop-service) > > %desktop-services)) > > ... and, unless you want to use XFCE, change that to (services > %desktop-services)