1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Remove extraneous reference to defunct xfce-desktop-service.

This is a followup to commit a1fa230147.

Perhaps it was caused by a conflict resolution error during a rebase or
merge?

* gnu/services/desktop.scm: Stop exporting the non-existent variable
xfce-desktop-service.
* doc/guix.texi (Desktop Services): Adjust accordingly.

Change-Id: I7ca24331365fa395fcee47de7ad0239e08aafbe3
This commit is contained in:
Leo Famulari
2025-02-05 21:02:21 -05:00
parent 2fb2cffdd5
commit 934569bc77
2 changed files with 2 additions and 3 deletions

View File

@@ -25100,7 +25100,7 @@ environments to a system.
@item @code{enlightenment-desktop-service-type} adds Enlightenment,
@item @code{lxqt-desktop-service-type} adds LXQt,
@item @code{mate-desktop-service-type} adds MATE, and
@item @code{xfce-desktop-service} adds Xfce.
@item @code{xfce-desktop-service-type} adds Xfce.
@end itemize
These service types add ``metapackages'' such as @code{gnome} or
@@ -25320,7 +25320,7 @@ them by default. To add GNOME, Xfce or MATE, just @code{cons} them onto
...
;; cons* adds items to the list given as its last argument.
(services (cons* (service gnome-desktop-service-type)
(service xfce-desktop-service)
(service xfce-desktop-service-type)
%desktop-services))
...)
@end lisp