init.scm 638 B

1234567891011121314151617181920212223
  1. ;;; Shepherd User Services
  2. ;; See https://github.com/alezost/shepherd-config.
  3. (load "services.scm")
  4. ;; Services known to shepherd:
  5. ;; Add new services (defined using 'make <service>') to shepherd here by
  6. ;; providing them as arguments to 'register-services'.
  7. (apply register-services
  8. (append main-services
  9. display-services
  10. laptop-services))
  11. ;; Send shepherd into the background.
  12. (action 'shepherd 'daemonize)
  13. ;; Services to start when shepherd starts:
  14. ;; (start 'main-services)
  15. (for-each start
  16. (append main-services
  17. display-services
  18. laptop-services))