diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-29 19:00:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-29 19:07:58 +0100 |
commit | 6726282b20918f98ba7197ea1301376f29a248af (patch) | |
tree | 9355e394a70d538a4cba544e6719444375562dcd /gnu/system | |
parent | e502bf8953afcd1e0cf29cd729e7c62c5c27792f (diff) | |
download | gnu-guix-6726282b20918f98ba7197ea1301376f29a248af.tar gnu-guix-6726282b20918f98ba7197ea1301376f29a248af.tar.gz |
services: Add screen-locker service.
* gnu/system/linux.scm (base-pam-services): Remove "xlock" and
"xscreensaver".
* gnu/services/xorg.scm (<screen-locker>): New record type.
(screen-locker-pam-services, screen-locker-setuid-programs,
screen-locker-service): New procedures.
(screen-locker-service-type): New variable.
* gnu/services/desktop.scm (%desktop-services): Use them.
* doc/guix.texi (X Window): Document 'screen-locker-service'.
(Desktop Services): Mention it.
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/linux.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/system/linux.scm b/gnu/system/linux.scm index cd14bc97be..487d379e65 100644 --- a/gnu/system/linux.scm +++ b/gnu/system/linux.scm @@ -182,8 +182,7 @@ authenticate to run COMMAND." ;; These programs are setuid-root. (map (cut unix-pam-service <> #:allow-empty-passwords? allow-empty-passwords?) - '("su" "passwd" "sudo" - "xlock" "xscreensaver")) + '("su" "passwd" "sudo")) ;; These programs are not setuid-root, and we want root to be able ;; to run them without having to authenticate (notably because |