system: Initialize $PATH before starting dmd services.
* gnu/services/dmd.scm (dmd-configuration-file): Call 'setenv' before starting services.master
parent
2e4e01eebf
commit
d69b35ee70
|
@ -69,6 +69,9 @@ ETC (the name of a directory in the store) on startup."
|
|||
(rm-f "/var/guix/gcroots/etc-directory")
|
||||
(symlink ,etc "/var/guix/gcroots/etc-directory"))
|
||||
|
||||
;; guix-daemon 0.6 aborts if 'PATH' is undefined, so work around it.
|
||||
(setenv "PATH" "/run/current-system/bin")
|
||||
|
||||
(format #t "starting services...~%")
|
||||
(for-each start ',(append-map service-provision services))))
|
||||
|
||||
|
|
Reference in New Issue