2016-06-20 04:45:27 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.emacs;
|
|
|
|
|
2016-06-21 08:26:07 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2016-06-20 04:45:27 +00:00
|
|
|
in {
|
|
|
|
|
|
|
|
options.services.emacs = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
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;
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2016-06-21 08:26:07 +00:00
|
|
|
defaultEditor = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
When enabled, configures emacsclient to be the default editor
|
|
|
|
using the EDITOR environment variable.
|
|
|
|
'';
|
|
|
|
};
|
2016-06-20 04:45:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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" ]; };
|
|
|
|
|
2016-06-21 08:26:07 +00:00
|
|
|
environment.systemPackages = [ cfg.package editorScript ];
|
2016-06-20 04:45:27 +00:00
|
|
|
|
2016-09-03 06:25:25 +00:00
|
|
|
environment.variables = {
|
|
|
|
# This is required so that GTK applications launched from Emacs
|
|
|
|
# get properly themed:
|
|
|
|
GTK_DATA_PREFIX = "${config.system.path}";
|
|
|
|
} // (if cfg.defaultEditor then {
|
|
|
|
EDITOR = mkOverride 900 "${editorScript}/bin/emacseditor";
|
|
|
|
} else {});
|
2016-06-21 08:26:07 +00:00
|
|
|
};
|
2016-08-30 00:40:05 +00:00
|
|
|
|
|
|
|
meta.doc = ./emacs.xml;
|
2016-06-20 04:45:27 +00:00
|
|
|
}
|