diff options
| author | Fredrik Salomonsson <plattfot@posteo.net> | 2025-10-25 17:09:19 -0700 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-11-04 17:49:29 +0100 |
| commit | 09014b57fddace0c3faec3e4276e1e6671a85799 (patch) | |
| tree | 555183a78265b9eaedca981acf1613cdec1d93c3 /gnu/installer | |
| parent | 3b9d0e0e5c79c836a2063eb216c020ec4f7c5593 (diff) | |
installer: Add Sway as an option in the Desktop environment page.
* gnu/installer/services.scm (%system-services): desktop-environment for sway
and its minimal companion packages.
* gnu/tests/install.scm (installation-target-desktop-os-for-gui-tests): Add
sway and its companion packages to operating-system packages.
Change-Id: I22f4cb67752ce1a15009680a1ba081fae129d45a
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/installer')
| -rw-r--r-- | gnu/installer/services.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm index fe5d7998dda..c460539212a 100644 --- a/gnu/installer/services.scm +++ b/gnu/installer/services.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2021 Leo Famulari <leo@famulari.name> ;;; Copyright © 2023 Denys Nykula <vegan@libre.net.ua> ;;; Copyright © 2025 Florian Pelz <pelzflorian@pelzflorian.de> +;;; Copyright © 2025 Fredrik Salomonsson <plattfot@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -107,6 +108,11 @@ (packages '((specification->package "emacs") (specification->package "emacs-exwm") (specification->package "emacs-desktop-environment")))) + (desktop-environment + (name "Sway") + (packages (map (lambda (package) + `(specification->package ,package)) + '("sway" "wmenu" "foot")))) ;; Networking. (system-service |
