services: xorg: Fix ~/.xsession handling.
Fixes a regression introduced in c510cbb4ec
.
* gnu/services/xorg.scm (xinitrc)[builder]: Add missing 'apply' when
XSESSION-FILE exists.
This commit is contained in:
parent
473dbe9b19
commit
f2ab925028
|
@ -250,7 +250,7 @@ which should be passed to this script as the first argument. If not, the
|
||||||
((_ x ..1) x))))
|
((_ x ..1) x))))
|
||||||
(if (file-exists? xsession-file)
|
(if (file-exists? xsession-file)
|
||||||
;; Run ~/.xsession when it exists.
|
;; Run ~/.xsession when it exists.
|
||||||
(exec-from-login-shell xsession-file session)
|
(apply exec-from-login-shell xsession-file session)
|
||||||
;; Otherwise, start the specified session.
|
;; Otherwise, start the specified session.
|
||||||
(apply exec-from-login-shell session)))))
|
(apply exec-from-login-shell session)))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue