From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: =?utf-8?B?4oCYc3RhZ2luZ+KAmQ==?= and GNOME updates Date: Tue, 23 Apr 2019 09:20:02 +0200 Message-ID: <87y3415gt9.fsf@elephly.net> References: <871s3a4xd4.fsf@gnu.org> <87wokjyuw4.fsf@fastmail.com> <87muld8xuo.fsf@gnu.org> <87y34xzez8.fsf@elephly.net> <87zhpaydem.fsf_-_@gnu.org> <87imvler9u.fsf@elephly.net> <87bm1d8sxv.fsf@gnu.org> <87ef68ibfy.fsf@elephly.net> <87r2a3o39s.fsf@gnu.org> <87sgujgchr.fsf@gnu.org> <878swa3nm9.fsf@elephly.net> <87h8ayfstx.fsf@ngyro.com> <87zhopd7x4.fsf@gnu.org> <87d0le1h38.fsf@gnu.org> <87zhoh5gwu.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:56577) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hIpiz-0005n2-0q for guix-devel@gnu.org; Tue, 23 Apr 2019 03:20:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hIpiy-00047H-2q for guix-devel@gnu.org; Tue, 23 Apr 2019 03:20:17 -0400 In-reply-to: <87zhoh5gwu.fsf@elephly.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: Guix-devel Ricardo Wurmus writes: > With this system definition I cannot log into GNOME: > > --8<---------------cut here---------------start------------->8--- > (use-modules (gnu) (gnu system nss)) > (use-service-modules desktop xorg) > (use-package-modules certs gnome) > > (operating-system > (host-name "antelope") > (timezone "Europe/Paris") > (locale "en_US.utf8") > (keyboard-layout (keyboard-layout "us" "altgr-intl")) > (bootloader (bootloader-configuration > (bootloader grub-efi-bootloader) > (target "/boot/efi") > (keyboard-layout keyboard-layout))) > (file-systems (cons (file-system > (device (file-system-label "my-root")) > (mount-point "/") > (type "ext4")) > %base-file-systems)) > (users (cons (user-account > (name "bob") > (comment "Alice's brother") > (group "users") > (supplementary-groups '("wheel" "netdev" > "audio" "video"))) > %base-user-accounts)) > (packages (append (list nss-certs gvfs) > %base-packages)) > (services (append (list (service gnome-desktop-service-type) > (set-xorg-configuration > (xorg-configuration > (keyboard-layout keyboard-layout))) > (service (service-type > (name 'break-gnome) > (extensions > (list (service-extension > activation-service-type > (lambda _ > #~(mkdir-p "/home/bob/.loca= l/share/gnome-shell"))))) > (default-value #t)))) > %desktop-services)) > (name-service-switch %mdns-host-lookup-nss)) > --8<---------------cut here---------------end--------------->8--- I used =E2=80=9C./pre-inst-env guix system vm broken-gnome-vm.scm=E2=80=9D = on the staging branch. The resulting script needs to be run with =E2=80=9C-m 1024= =E2=80=9D (or higher) or else GNOME won=E2=80=99t work. -- Ricardo