From e098ba2f499bbddfea50c85058e4077e39b85513 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 21 Oct 2023 10:37:53 +0200 Subject: home: services: Fix regression in generated ‘on-first-login’ script. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes . Fixes a regression introduced in 6b0a32196982a0a2f4dbb59d35e55833a5545ac6. * gnu/home/services.scm (compute-on-first-login-script): Add ‘begin’ around #$@gexps. Reported-by: Nils Landt --- gnu/home/services.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/home/services.scm') diff --git a/gnu/home/services.scm b/gnu/home/services.scm index 651c068f79..282fed74c1 100644 --- a/gnu/home/services.scm +++ b/gnu/home/services.scm @@ -435,7 +435,7 @@ activation."))) ;; after complete logout/reboot. (if (file-exists? xdg-runtime-dir) (when (claim-first-run flag-file-path) - #$@gexps) + (begin #$@gexps)) ;GEXPS can be empty, hence 'begin' ;; TRANSLATORS: 'on-first-login' is the name of a service and ;; shouldn't be translated (warning (G_ "XDG_RUNTIME_DIR doesn't exists, on-first-login script -- cgit v1.2.3