summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-05-03 08:28:06 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-05-03 16:02:14 -0600
commitbf49284a5e206b45c6919e1aea6dd2d56ad9b2fa (patch)
tree12eaa924b438cb6dcba385c0ec7241acd6ff5772
parentd1be5fe2b55fb67dbd30d1d7d4299d622c3baf12 (diff)
downloadcfg.nix-bf49284a5e206b45c6919e1aea6dd2d56ad9b2fa.tar.gz
cfg.nix-bf49284a5e206b45c6919e1aea6dd2d56ad9b2fa.tar.xz
services: add emacs service
Use for per-user emacs daemons. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
-rw-r--r--services/emacs.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/services/emacs.nix b/services/emacs.nix
new file mode 100644
index 0000000..f47aa6c
--- /dev/null
+++ b/services/emacs.nix
@@ -0,0 +1,8 @@
+{ config, ... }:
+{
+ services.emacs = {
+ enable = false;
+ install = true;
+ defaultEditor = true;
+ };
+}