me
/
guix
Archived
1
0
Fork 0

services: nix: Fix nix-shepherd-service.

* gnu/services/nix.scm (nix-shepherd-service): Un-gexp build-directory.
Christopher Baines 2022-12-15 10:13:24 +00:00
parent 8c8a7dc66c
commit f4dc53881b
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 2 additions and 2 deletions

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)))))))