unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: "Alex Griffin" <a@ajgrf.com>
To: 35674@debbugs.gnu.org
Subject: bug#35674: GDM auto-login doesn't work
Date: Fri, 10 May 2019 16:31:27 -0400	[thread overview]
Message-ID: <f3aa62e2-3b0e-4f2b-985d-240d8b57d8fe@www.fastmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 263 bytes --]

After configuring Guix to enable GDM auto-login, I am still presented with a password prompt upon booting my machine. I'm not sure whether it's a bug in Guix or something I'm doing wrong, so I've attached the configuration I'm using just in case.
-- 
Alex Griffin

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: system.scm --]
[-- Type: text/x-scheme; name="system.scm", Size: 2861 bytes --]

(use-modules (gnu))
(use-service-modules desktop networking ssh xorg)

(load "simple-firewall.scm")

(operating-system
  (locale "en_US.utf8")
  (timezone "America/Chicago")
  (keyboard-layout
   (keyboard-layout "us" "workman"))
  (bootloader
   (bootloader-configuration
    (bootloader grub-bootloader)
    (target "/dev/sda")
    (timeout 2)
    (keyboard-layout keyboard-layout)
    (menu-entries
     (list (menu-entry
            (label "Debian 10 (buster)")
            (device "debboot")
            (linux "(hd0,gpt3)/vmlinuz-4.19.0-4-amd64")
            (linux-arguments
             '("root=UUID=227c5e05-6dff-4802-9537-688e20892cf6"
               "ro" "quiet" "splash"))
            (initrd "(hd0,gpt3)/initrd.img-4.19.0-4-amd64"))
           (menu-entry
            (label "PureOS")
            (device "pureosboot")
            (linux "(hd0,gpt5)/vmlinuz-4.19.0-4-amd64")
            (linux-arguments
             '("root=UUID=b315dea0-efc1-48ea-9bb4-f1c3aa7e2ce5"
               "ro" "quiet" "splash"))
            (initrd "(hd0,gpt5)/initrd.img-4.19.0-4-amd64"))))))
  (mapped-devices
   (list (mapped-device
          (source (uuid "5abba48a-e3e2-4114-8dfc-d97f2a5ba9ac"))
          (target "home")
          (type luks-device-mapping))))
  (file-systems
   (cons* (file-system
            (mount-point "/")
            (device
             (uuid "1f1bdd00-3aa2-476f-8b5d-4a8200737eb9"
                   'ext4))
            (type "ext4"))
          (file-system
            (mount-point "/home")
            (device "/dev/mapper/home")
            (type "ext4"))
          %base-file-systems))
  (host-name "tenzin")
  (users (cons* (user-account
                 (name "ajgrf")
                 (comment "Alex Griffin")
                 (group "ajgrf")
                 (home-directory "/home/ajgrf")
                 (supplementary-groups
                  '("wheel" "netdev" "audio" "video")))
                %base-user-accounts))
  (groups (cons* (user-group
                  (name "ajgrf")
                  (id 1000))
                 %base-groups))
  (packages
   (cons* (specification->package "nss-certs")
          %base-packages))
  (services
   (cons* (service gnome-desktop-service-type)
          (service iptables-service-type
                   (simple-firewall #:open-tcp-ports '(6600 8376 29254)
                                    #:open-udp-ports '(1900)))
          (modify-services %desktop-services
            (gdm-service-type config =>
                              (gdm-configuration
                               (inherit config)
                               (xorg-configuration
                                (xorg-configuration
                                 (keyboard-layout keyboard-layout)))
                               (auto-login? #t)
                               (default-user "ajgrf")))))))

             reply	other threads:[~2019-05-10 20:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-10 20:31 Alex Griffin [this message]
2019-05-10 21:18 ` bug#35674: GDM auto-login doesn't work Ricardo Wurmus
2019-05-13 14:24   ` Timothy Sample
2019-11-01 16:02     ` Alex Griffin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f3aa62e2-3b0e-4f2b-985d-240d8b57d8fe@www.fastmail.com \
    --to=a@ajgrf.com \
    --cc=35674@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).