guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

205/332: services: sddm: Set some environment variables for the breeze t


From: guix-commits
Subject: 205/332: services: sddm: Set some environment variables for the breeze theme.
Date: Thu, 3 Aug 2023 05:43:54 -0400 (EDT)

iyzsong pushed a commit to branch kde-updates
in repository guix.

commit 7e056197d7bf8f888fe52db9d5ee34ec253ffff9
Author: Zheng Junjie <873216071@qq.com>
AuthorDate: Fri Jul 21 17:39:27 2023 +0800

    services: sddm: Set some environment variables for the breeze theme.
    
    * gnu/services/sddm.scm (sddm-service-type): Pass #:environment-variables to
    make-forkexec-constructor.
    
    Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
---
 gnu/services/sddm.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/services/sddm.scm b/gnu/services/sddm.scm
index c9a7ba96f4..69c737829b 100644
--- a/gnu/services/sddm.scm
+++ b/gnu/services/sddm.scm
@@ -171,7 +171,16 @@ Relogin="              (if (sddm-configuration-relogin? 
config)
          (documentation "SDDM display manager.")
          (requirement '(user-processes elogind pam))
          (provision '(xorg-server display-manager))
-         (start #~(make-forkexec-constructor #$sddm-command))
+         (start #~(make-forkexec-constructor
+                   #$sddm-command
+                   ;; some theme need icon,qml,data so add path to env.
+                   #:environment-variables
+                   (cons*
+                    "XDG_DATA_DIRS=/run/current-system/profile/share"
+                    "XDG_CONFIG_DIRS=/run/current-system/profile/etc/xdg"
+                    
"QT_PLUGIN_PATH=/run/current-system/profile/lib/qt5/plugins"
+                    "QML2_IMPORT_PATH=/run/current-system/profile/lib/qt5/qml"
+                    (default-environment-variables))))
          (stop #~(make-kill-destructor)))))
 
 (define (sddm-etc-service config)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]