mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
services: greetd: Accept gexps in initial-session.
Recently initial-session-user and initial-session-command has been added, but they accept only strings, not gexps. * gnu/services/base.scm (make-greetd-terminal-configuration-file): Ungexp initial-session-user and initial-session-command. Change-Id: I2b247464528b6147eab8acea08c6942ac7bfd0ab Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
aec2a05e35
commit
7562b50c02
1 changed files with 4 additions and 4 deletions
|
@ -3986,10 +3986,10 @@ to handle."
|
|||
"user = " default-session-user "\n"
|
||||
"command = " default-session-command "\n"
|
||||
(if (and initial-session-user initial-session-command)
|
||||
(string-append
|
||||
"[initial_session]\n"
|
||||
"user = " initial-session-user "\n"
|
||||
"command = " initial-session-command "\n")
|
||||
#~(string-append
|
||||
"[initial_session]\n"
|
||||
"user = " #$initial-session-user "\n"
|
||||
"command = " #$initial-session-command "\n")
|
||||
""))))
|
||||
|
||||
(define %greetd-file-systems
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue