diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-03-27 10:41:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-27 11:54:06 +0100 |
commit | 391e0d65d7129d53c025963d2758724e75626eb4 (patch) | |
tree | 1198b3fdf1a35f5d5cd1e73e920d7c5b3bbc1a79 /gnu/services | |
parent | ee05cc7fe353c1c9b45062343746ac215a29fed5 (diff) | |
download | guix-391e0d65d7129d53c025963d2758724e75626eb4.tar guix-391e0d65d7129d53c025963d2758724e75626eb4.tar.gz |
services: Deprecate 'xfce-desktop-service'.
* gnu/services/desktop.scm (xfce-desktop-service-type)[default-value]
[description]: New fields.
(xfce-desktop-service): Deprecate.
* gnu/system/examples/desktop.tmpl: Use the (service …) form.
* gnu/installer/services.scm (%desktop-environments): Add TODO comment.
* doc/guix.texi (Desktop Services): Adjust accordingly, and fix spelling
of "Xfce" throughout.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/desktop.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 9c9472e1a2..da6291036f 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -945,10 +945,13 @@ and extends polkit with the actions from @code{mate-settings-daemon}." "thunar") xfce-package)) (service-extension profile-service-type - (compose list - xfce-package)))))) + (compose list xfce-package)))) + (default-value (xfce-desktop-configuration)) + (description "Run the Xfce desktop environment."))) -(define* (xfce-desktop-service #:key (config (xfce-desktop-configuration))) +(define-deprecated (xfce-desktop-service #:key (config + (xfce-desktop-configuration))) + xfce-desktop-service-type "Return a service that adds the @code{xfce} package to the system profile, and extends polkit with the ability for @code{thunar} to manipulate the file system as root from within a user session, after the user has authenticated |