[emacs] Re-indent shepherd service file

This commit is contained in:
Tom Willemse 2022-03-03 01:15:59 -08:00
parent 5f6ecb37e4
commit 2a845b3720

View file

@ -1,7 +1,7 @@
Define a service for shepherd that starts up Emacs.
#+begin_src scheme
(define emacs
(define emacs
(make <service>
#:provides '(emacs)
#:docstring "Run `emacs --daemon'"
@ -10,7 +10,7 @@ Define a service for shepherd that starts up Emacs.
#:log-file (string-append (getenv "HOME") "/.logs/emacs.log"))
#:stop (make-kill-destructor)))
(register-services emacs)
(register-services emacs)
(start emacs)
(start emacs)
#+end_src