diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-02-05 16:49:05 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-02-05 22:10:42 +0100 |
commit | 05c5b165851cdbe312e1340a2e6776d1c64d63a3 (patch) | |
tree | e98f3bd2157d7c43686b353305d493915f635ad3 /gnu/services/desktop.scm | |
parent | edc891fa7625cad07857f05a622448e4bbda5bb9 (diff) |
services: elogind: Add elogind to the global profile.
* gnu/services/desktop.scm (elogind-service-type): Extend
PROFILE-SERVICE-TYPE.
Diffstat (limited to 'gnu/services/desktop.scm')
-rw-r--r-- | gnu/services/desktop.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 71d0f58cd7..36e336f5ca 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -675,6 +675,11 @@ include the @command{udisksctl} command, part of UDisks, and GNOME Disks." (compose list elogind-package)) (service-extension polkit-service-type (compose list elogind-package)) + + ;; Provide the 'loginctl' command. + (service-extension profile-service-type + (compose list elogind-package)) + ;; TODO: Extend PAM with pam_elogind.so. )))) |