summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRutherther <rutherther@ditigal.xyz>2025-10-20 21:32:58 +0200
committerLudovic Courtès <ludo@gnu.org>2025-11-03 17:18:39 +0100
commit1f024990dd3afcadfcb441fe8305c6ffcfaa7c84 (patch)
tree4ced178ef24ef73bdb20595602d5f27f3633cab3 /gnu
parent02d3a5a1fb7275a5f313e1c55e6ae1d297bab50c (diff)
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 <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/installer/services.scm3
-rw-r--r--gnu/tests/install.scm5
2 files changed, 6 insertions, 2 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm
index d40d2b5ad81..fe5d7998dda 100644
--- a/gnu/installer/services.scm
+++ b/gnu/installer/services.scm
@@ -82,6 +82,9 @@
82 (name "MATE") 82 (name "MATE")
83 (snippet '((service mate-desktop-service-type)))) 83 (snippet '((service mate-desktop-service-type))))
84 (desktop-environment 84 (desktop-environment
85 (name "KDE Plasma")
86 (snippet '((service plasma-desktop-service-type))))
87 (desktop-environment
85 (name "Icewm") 88 (name "Icewm")
86 (packages '((specification->package "icewm")))) 89 (packages '((specification->package "icewm"))))
87 (desktop-environment 90 (desktop-environment
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm
index dd81a75cbe8..ab290e16582 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.")
2068 (list (service gnome-desktop-service-type) 2068 (list (service gnome-desktop-service-type)
2069 (service xfce-desktop-service-type) 2069 (service xfce-desktop-service-type)
2070 (service mate-desktop-service-type) 2070 (service mate-desktop-service-type)
2071 (service plasma-desktop-service-type)
2071 (set-xorg-configuration 2072 (set-xorg-configuration
2072 (xorg-configuration 2073 (xorg-configuration
2073 (keyboard-layout keyboard-layout))) 2074 (keyboard-layout keyboard-layout)))
@@ -2147,7 +2148,7 @@ build (current-guix) and then store a couple of full system images.")
2147 #:encrypted? #t) 2148 #:encrypted? #t)
2148 ;; XXX: The disk-image size guess is too low. Use 2149 ;; XXX: The disk-image size guess is too low. Use
2149 ;; a constant value until this is fixed. 2150 ;; a constant value until this is fixed.
2150 #:install-size (* 8000 MiB) 2151 #:install-size (* 15000 MiB)
2151 #:target-size (* 9000 MiB))) 2152 #:target-size (* 15000 MiB)))
2152 2153
2153;;; install.scm ends here 2154;;; install.scm ends here