diff options
Diffstat (limited to '.config')
-rw-r--r-- | .config/systemd/user/emacs.service | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/systemd/user/emacs.service b/.config/systemd/user/emacs.service new file mode 100644 index 0000000..a552611 --- /dev/null +++ b/.config/systemd/user/emacs.service | |||
@@ -0,0 +1,12 @@ | |||
1 | [Unit] | ||
2 | Description=Emacs: the extensible, self-documenting text editor | ||
3 | |||
4 | [Service] | ||
5 | Type=forking | ||
6 | ExecStart=/bin/sh -c "emacs --daemon" | ||
7 | ExecStop=/bin/sh -c 'emacsclient --eval "(kill-emacs)"' | ||
8 | Environment=PATH=%h/bin:/var/setuid-wrappers:%h/.nix-profile/bin:%h/.nix-profile/sbin:%h/.nix-profile/lib/kde4/libexec:/nix/var/nix/profiles/default/bin:/nix/var/nix/profiles/default/sbin:/nix/var/nix/profiles/default/lib/kde4/libexec:/run/current-system/sw/bin:/run/current-system/sw/sbin:/run/current-system/sw/lib/kde4/libexec | ||
9 | Restart=always | ||
10 | |||
11 | [Install] | ||
12 | WantedBy=default.target | ||