guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 1f024990dd3afcadfcb441fe8305c6ffcfaa7c84
Author: Rutherther <[email protected]>
AuthorDate: Mon Oct 20 21:32:58 2025 +0200
installer: Add KDE Plasma desktop environment.
* gnu/installer/services.scm (%system-services): Add KDE Plasma environment.
* gnu/tests/install.scm
(installation-target-desktop-os-for-gui-tests): Add
plasma-desktop-service-type to operating-system services.
(%test-gui-inst)led-desktop-os-encrypted): Extend side for Plasma.
Change-Id: Iaf55bb85f40865ee5b79abef23a98a3e04a1e244
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/installer/services.scm | 3 +++
gnu/tests/install.scm | 5 +++--
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm
index d40d2b5ad8..fe5d7998dd 100644
--- a/gnu/installer/services.scm
+++ b/gnu/installer/services.scm
@@ -81,6 +81,9 @@
(desktop-environment
(name "MATE")
(snippet '((service mate-desktop-service-type))))
+ (desktop-environment
+ (name "KDE Plasma")
+ (snippet '((service plasma-desktop-service-type))))
(desktop-environment
(name "Icewm")
(packages '((specification->package "icewm"))))
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index dd81a75cbe..ab290e1658 100644
--- a/gnu/tests/install.scm
+++ b/gnu/tests/install.scm
@@ -2068,6 +2068,7 @@ build (current-guix) and then store a couple of full
system images.")
(list (service gnome-desktop-service-type)
(service xfce-desktop-service-type)
(service mate-desktop-service-type)
+ (service plasma-desktop-service-type)
(set-xorg-configuration
(xorg-configuration
(keyboard-layout keyboard-layout)))
@@ -2147,7 +2148,7 @@ build (current-guix) and then store a couple of full
system images.")
#:encrypted? #t)
;; XXX: The disk-image size guess is too low. Use
;; a constant value until this is fixed.
- #:install-size (* 8000 MiB)
- #:target-size (* 9000 MiB)))
+ #:install-size (* 15000 MiB)
+ #:target-size (* 15000 MiB)))
;;; install.scm ends here