2017-02-19 11:20:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.emacs;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.emacs = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the Emacs Daemon.";
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
default = pkgs.emacs;
|
|
|
|
description = "This option specifies the emacs package to use.";
|
|
|
|
};
|
|
|
|
|
2017-07-04 21:13:32 +02:00
|
|
|
exec = mkOption {
|
2018-07-21 13:27:08 +02:00
|
|
|
type = types.str;
|
2017-07-04 21:13:32 +02:00
|
|
|
default = "emacs";
|
2017-07-06 21:54:38 +02:00
|
|
|
description = "Emacs command/binary to execute.";
|
2017-07-04 21:13:32 +02:00
|
|
|
};
|
2017-02-19 11:20:26 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
|
|
|
launchd.user.agents.emacs = {
|
|
|
|
serviceConfig.ProgramArguments = [
|
2017-07-04 21:13:32 +02:00
|
|
|
"${cfg.package}/bin/${cfg.exec}"
|
2017-02-19 11:20:26 +01:00
|
|
|
"--daemon"
|
|
|
|
];
|
|
|
|
serviceConfig.RunAtLoad = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2017-07-04 21:13:32 +02:00
|
|
|
}
|