From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jack Hill Subject: bug#39281: gdm doesn't start Date: Sat, 25 Jan 2020 15:32:31 -0500 (EST) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:53993) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ivS75-0008Kz-4n for bug-guix@gnu.org; Sat, 25 Jan 2020 15:33:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ivS73-0001xW-W5 for bug-guix@gnu.org; Sat, 25 Jan 2020 15:33:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50392) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ivS73-0001xP-TA for bug-guix@gnu.org; Sat, 25 Jan 2020 15:33:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ivS73-0004TW-RE for bug-guix@gnu.org; Sat, 25 Jan 2020 15:33:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:53963) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ivS6c-0008Hz-10 for bug-guix@gnu.org; Sat, 25 Jan 2020 15:32:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ivS6a-0001Yg-SC for bug-guix@gnu.org; Sat, 25 Jan 2020 15:32:33 -0500 Received: from minsky.hcoop.net ([104.248.1.95]:58768) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ivS6a-0001YR-PA for bug-guix@gnu.org; Sat, 25 Jan 2020 15:32:32 -0500 Received: from marsh.hcoop.net ([45.55.52.66]) by minsky.hcoop.net with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1ivS6a-0006A5-3e for bug-guix@gnu.org; Sat, 25 Jan 2020 15:32:32 -0500 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 39281@debbugs.gnu.org Hi Guix, After a recent pull and system reconfigure, gdm does not start at boot. Instead, I am left with a text console login. sirgazil also described the problem on irc, "I just did guix pull and sudo system reconfigure, and GDM never started after waiting for about 10 minutes. This may be the same problem gnutec was having yesterday..." The last known good guix for me is 7842ddcbc118cbc2799e22651732b7cdc06b93ee and the first known bad commit is df6ce9fcb455ac59372f1025e450005ea3190614. My operating system config is included below: Best, Jack (use-modules (gnu) (gnu system nss) (gnu services xorg) (gnu packages linux)) (use-service-modules desktop) (use-package-modules certs gnome scanner security-token) (operating-system (host-name "alperton") (timezone "America/New_York") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) ;; Specify a mapped device for the encrypted root partition. ;; The UUID is that returned by 'cryptsetup luksUUID'. (mapped-devices (list (mapped-device (source (uuid "f7776767-70c9-44e3-9973-c1334d301348")) (target "alperton_root") (type luks-device-mapping)))) (file-systems (cons (file-system (device (file-system-label "alperton_root")) (mount-point "/") (type "ext4") (dependencies mapped-devices)) %base-file-systems)) (swap-devices (list "/root/swap")) (users (cons (user-account (name "jackhill") (comment "Jack Hill") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "lp" "video")) (home-directory "/home/jackhill")) %base-user-accounts)) ;; This is where we specify system-wide packages. (packages (cons* nss-certs ;for HTTPS access fuse-exfat bluez gvfs ;for user mounts %base-packages)) ;; 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* (service gnome-desktop-service-type) (bluetooth-service) (simple-service 'custom-udev-rules udev-service-type (list sane-backends libu2f-host)) %desktop-services)) (firmware %base-firmware) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss))