2017-02-19 11:20:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.emacs;
|
|
|
|
|
2020-11-27 11:43:13 +09:00
|
|
|
in {
|
2017-02-19 11:20:26 +01:00
|
|
|
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.";
|
|
|
|
};
|
|
|
|
|
2020-11-27 11:43:13 +09:00
|
|
|
additionalPath = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
|
|
|
example = [ "/Users/my_user_name" ];
|
|
|
|
description = ''
|
|
|
|
This option specifies additional PATH that the emacs daemon would have.
|
|
|
|
Typically if you have binaries in your home directory that is what you would add your home path here.
|
|
|
|
One caveat is that there won't be shell variable expansion, so you can't use $HOME for example
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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 = {
|
2020-11-27 11:43:13 +09:00
|
|
|
path = cfg.additionalPath ++ [ config.environment.systemPath ];
|
|
|
|
serviceConfig.ProgramArguments =
|
|
|
|
[ "${cfg.package}/bin/${cfg.exec}" "--fg-daemon" ];
|
2017-02-19 11:20:26 +01:00
|
|
|
serviceConfig.RunAtLoad = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
2017-07-04 21:13:32 +02:00
|
|
|
}
|