diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-12-17 16:57:59 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-12-17 18:12:18 +0200 |
commit | 9583296f72d8a6201ff353673e19bf84aee350ff (patch) | |
tree | 20f9ccd24213a68b33b1aa90f2558ec19248adc4 /gnu/services | |
parent | 8e1191472c0d862632d0067b7938feb43dddf64d (diff) | |
download | guix-9583296f72d8a6201ff353673e19bf84aee350ff.tar.gz guix-9583296f72d8a6201ff353673e19bf84aee350ff.zip |
gnu: desktop-services-for-system: Update code comment.
* gnu/services/desktop.scm (desktop-services-for-system): Update the
comment about platforms with rust support.
Change-Id: Ibefa826494e29498870f392c0fec87d606d386ec
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/desktop.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 274aeeef9b..4f679485bc 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -2023,9 +2023,10 @@ applications needing access to be root.") (%current-system)))) ;; List of services typically useful for a "desktop" use case. - ;; Since GDM depends on Rust (gdm -> gnome-shell -> gjs -> mozjs -> rust) - ;; and Rust is currently unavailable on non-x86_64 platforms, default to - ;; SDDM there (FIXME). + ;; Since GDM depends on Rust and Rust is not available on all platforms, + ;; use SDDM as the fall-back display manager. + ;; TODO: Switch the condition to use (supported-package? "rust") and make + ;; a news entry about the change. (cons* (if (string-prefix? "x86_64" system) (service gdm-service-type) (service sddm-service-type)) |