summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2016-07-03 15:20:03 +0200
committerGitHub <noreply@github.com>2016-07-03 15:20:03 +0200
commit61ddaa08bc5edbbc3b08862a711977508dd60cde (patch)
treee7d8ceb1dcc55b04d9e11f0bfc6ccef2a106991b /nixos/modules/services
parentac4958efc33322c9ae4252a1a239c33f21d8714c (diff)
parentfff2d6f3954e1eaf2b73bf4e8965baa256dc58ce (diff)
downloadnixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar.gz
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar.bz2
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar.lz
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar.xz
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.tar.zst
nixlib-61ddaa08bc5edbbc3b08862a711977508dd60cde.zip
Merge pull request #16356 from DamienCassou/emacs-module
Add a module for Emacs daemon
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/editors/emacs.nix86
1 files changed, 86 insertions, 0 deletions
diff --git a/nixos/modules/services/editors/emacs.nix b/nixos/modules/services/editors/emacs.nix
new file mode 100644
index 000000000000..43b4219c51dd
--- /dev/null
+++ b/nixos/modules/services/editors/emacs.nix
@@ -0,0 +1,86 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+
+  cfg = config.services.emacs;
+
+  editorScript = pkgs.writeScriptBin "emacseditor" ''
+    #!${pkgs.stdenv.shell}
+    if [ -z "$1" ]; then
+      exec ${cfg.package}/bin/emacsclient --create-frame --alternate-editor ${cfg.package}/bin/emacs
+    else
+      exec ${cfg.package}/bin/emacsclient --alternate-editor ${cfg.package}/bin/emacs "$@"
+    fi
+  '';
+
+in {
+
+  options.services.emacs = {
+    enable = mkOption {
+      type = types.bool;
+      default = false;
+      example = true;
+      description = ''
+        Whether to enable a user service for the Emacs daemon. Use <literal>emacsclient</literal> to connect to the
+        daemon. If <literal>true</literal>, <varname>services.emacs.install</varname> is
+        considered <literal>true</literal>, whatever its value.
+      '';
+    };
+
+    install = mkOption {
+      type = types.bool;
+      default = false;
+      example = true;
+      description = ''
+        Whether to install a user service for the Emacs daemon. Once
+        the service is started, use emacsclient to connect to the
+        daemon.
+
+        The service must be manually started for each user with
+        "systemctl --user start emacs" or globally through
+        <varname>services.emacs.enable</varname>.
+      '';
+    };
+
+
+    package = mkOption {
+      type = types.package;
+      default = pkgs.emacs;
+      defaultText = "pkgs.emacs";
+      description = ''
+        emacs derivation to use.
+      '';
+    };
+
+    defaultEditor = mkOption {
+      type = types.bool;
+      default = false;
+      example = true;
+      description = ''
+        When enabled, configures emacsclient to be the default editor
+        using the EDITOR environment variable.
+      '';
+    };
+  };
+
+  config = mkIf (cfg.enable || cfg.install) {
+    systemd.user.services.emacs = {
+      description = "Emacs: the extensible, self-documenting text editor";
+
+      serviceConfig = {
+        Type      = "forking";
+        ExecStart = "${pkgs.bash}/bin/bash -c 'source ${config.system.build.setEnvironment}; exec ${cfg.package}/bin/emacs --daemon'";
+        ExecStop  = "${cfg.package}/bin/emacsclient --eval (kill-emacs)";
+        Restart   = "always";
+      };
+    } // optionalAttrs cfg.enable { wantedBy = [ "default.target" ]; };
+
+    environment.systemPackages = [ cfg.package editorScript ];
+
+    environment.variables = if cfg.defaultEditor then {
+      EDITOR = mkOverride 900 "${editorScript}/bin/emacseditor";
+    } else {};
+  };
+}