mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ (define (exec-from-login-shell command . args)
|
|||
((_ x ..1) x))))
|
||||
(if (file-exists? xsession-file)
|
||||
;; 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.
|
||||
(apply exec-from-login-shell session)))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue