From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45906) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRHeR-0005b5-74 for guix-patches@gnu.org; Wed, 22 Apr 2020 11:51:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRHeQ-0003HO-Pi for guix-patches@gnu.org; Wed, 22 Apr 2020 11:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:41435) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRHeQ-0003HF-E4 for guix-patches@gnu.org; Wed, 22 Apr 2020 11:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jRHeQ-0004Ix-C8 for guix-patches@gnu.org; Wed, 22 Apr 2020 11:51:02 -0400 Subject: [bug#37725] [PATCH] gnu: lxqt-config: Add libkscreen as propagated-inputs. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <0204dc81-bfad-4efb-a88a-5f90e00678aa@www.fastmail.com> <38aa418c-7f64-452b-b49c-8f1b4d2d914e@www.fastmail.com> <87wod24bvw.fsf@gnu.org> <65f9ede0-d276-4b70-adf6-d536386d0985@www.fastmail.com> Date: Wed, 22 Apr 2020 17:50:33 +0200 In-Reply-To: <65f9ede0-d276-4b70-adf6-d536386d0985@www.fastmail.com> (Reza Alizadeh Majd's message of "Fri, 18 Oct 2019 20:14:16 +0330") Message-ID: <87tv1bv7sm.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Reza Alizadeh Majd Cc: 37725@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Reza, Sorry for the very late reply. "Reza Alizadeh Majd" skribis: > Sure, here is a minimal operating system configuration that we used for a > minimal LXQt desktop on Guix: I added a window manager to the global profile so that I could actually log in, but then I don=E2=80=99t even know how to get a terminal=E2=80=A6 = I think I=E2=80=99m not well positioned to further debug this. Did you discuss it with upstream? Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=lxqt.scm (use-modules (gnu) (gnu system nss) (gnu packages kde-plasma)) (use-service-modules desktop networking ssh sddm dbus) (use-package-modules ssh certs tls lxqt xorg openbox) (operating-system (host-name "panther") (timezone "Asia/Tehran") (locale "en_US.utf8") ;; Boot in "legacy" BIOS mode (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) (file-systems (cons (file-system (device (file-system-label "my-root")) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "user") (password (crypt "1234" "$6$abc")) (group "users") (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/user")) %base-user-accounts)) (packages (cons* openssh nss-certs gnutls lxqt lxqt-globalkeys openbox ;; commented in order to re-produce the issue ; libkscreen %base-packages)) (services (cons* (sddm-service (sddm-configuration (minimum-uid 1000) (theme "elarun"))) (elogind-service) (udisks-service) (dbus-service) (colord-service) (service polkit-service-type) (service upower-service-type) (service dhcp-client-service-type) ;; network configuration (service openssh-service-type (openssh-configuration (port-number 22) (permit-root-login #t))) (service wpa-supplicant-service-type) %base-services)) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) --=-=-=--