Hello Guix! I don't seem to be able to start Shepherd services from my guix home config. The services fail to start, despite being startable from the command line from both reconfigure & container. Here's what my services look like: #+BEGIN_SRC scheme (home-environment (packages (specifications->packages (append %base-packages %emacs %multimedia %browsers %chat-clients %devel))) (services (list ; ... bash services (service home-shepherd-service-type (home-shepherd-configuration (services (list (shepherd-service (provision '(syncthing)) (start #~(make-system-constructor "syncthing")) (stop #~(make-kill-destructor)) (documentation "Synchronize folders to other device")) (shepherd-service (provision '(pantalaimon)) (start #~(make-system-constructor "pantalaimon")) (stop #~(make-kill-destructor)) (documentation "Crypto back-end server for ement.el"))))))))) #+END_SRC Thanks again for the help & software