diff options
author | Alex Griffin <a@ajgrf.com> | 2020-06-14 17:58:47 -0500 |
---|---|---|
committer | Alex Griffin <a@ajgrf.com> | 2020-10-07 10:29:26 -0500 |
commit | d8258177fe5d329836ac42eaf736f3f2e543ea53 (patch) | |
tree | df420ed7583d84c58a73e62638fdd2355346b99e | |
parent | fb0037af8cecc0ebaa330392b0c54a35b7b8a424 (diff) |
services: Fix gdm-autologin pam service.
* gnu/services/xorg.scm (gdm-pam-service): Mark pam_gdm.so optional.
-rw-r--r-- | gnu/services/xorg.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index ca39994516..4590709187 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2019 Tim Gesthuizen <tim.gesthuizen@yahoo.de> ;;; Copyright © 2020 shtwzrd <shtwzrd@protonmail.com> ;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net> +;;; Copyright © 2020 Alex Griffin <a@ajgrf.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -925,7 +926,7 @@ the GNOME desktop environment.") (inherit (unix-pam-service "gdm-autologin" #:login-uid? #t)) (auth (list (pam-entry - (control "[success=ok default=1]") + (control "optional") (module (file-append (gdm-configuration-gdm config) "/lib/security/pam_gdm.so"))) (pam-entry |