summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndy Tai <[email protected]>2025-02-09 11:20:11 -0800
committerChristopher Baines <[email protected]>2025-03-01 22:22:34 +0000
commit38011da03d13a3d4c436d01517186b6df34ad49e (patch)
tree3e732ad32a3197fb5f3e8c50e8491846c301a021 /gnu
parent022d33e1ea3f87898014ce1515301ae5e1b4eccf (diff)
installer: Include icewm as a desktop environment.
* gnu/installer/services.scm (%system-services): Include icewm as a desktop environment. * gnu/tests/install.scm (installation-target-desktop-os-for-gui-tests): Add icewm to the list of packages. * etc/manifests/release.scm: (%system-packages): Add icewm. Change-Id: I881c1dd4289281e51c81d83fac785ef064e6ff6a Signed-off-by: Christopher Baines <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/installer/services.scm3
-rw-r--r--gnu/tests/install.scm2
2 files changed, 4 insertions, 1 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm
index 8b117d9a20..acb2d9ead9 100644
--- a/gnu/installer/services.scm
+++ b/gnu/installer/services.scm
@@ -84,6 +84,9 @@
(name "Enlightenment")
(snippet '((service enlightenment-desktop-service-type))))
(desktop-environment
+ (name "Icewm")
+ (snippet '((specification->package "icewm"))))
+ (desktop-environment
(name "Openbox")
(packages '((specification->package "openbox"))))
(desktop-environment
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index c8dccd38b0..b799a6752e 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -2013,7 +2013,7 @@ build (current-guix) and then store a couple of full system images.")
;; Make sure that all the packages and services that may be used by the
;; graphical installer are available.
(packages (append
- (list openbox awesome i3-wm i3status
+ (list icewm openbox awesome i3-wm i3status
dmenu st ratpoison xterm
emacs emacs-exwm emacs-desktop-environment)
%base-packages))