1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-28 03:51:53 +02:00

services: nix: Fix nix-shepherd-service.

* gnu/services/nix.scm (nix-shepherd-service): Un-gexp build-directory.
This commit is contained in:
Christopher Baines
2022-12-15 10:13:24 +00:00
parent 8c8a7dc66c
commit f4dc53881b
+2 -2
View File
@@ -142,8 +142,8 @@ GID."
(list (string-append #$package "/bin/nix-daemon")
#$@extra-options)
#:environment-variables
(list (string-append "TMPDIR=" build-directory)
"PATH=/run/current-system/profile/bin")))
(list (string-append "TMPDIR=" #$build-directory)
"PATH=/run/current-system/profile/bin")))
(respawn? #f)
(stop #~(make-kill-destructor)))))))