1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-15 17:51:01 +00:00
nix-darwin/modules/services/emacs.nix
Daiderd Jordan 8c29d0985d
fix typo
2017-07-06 21:54:38 +02:00

45 lines
823 B
Nix

{ 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.";
};
exec = mkOption {
type = types.string;
default = "emacs";
description = "Emacs command/binary to execute.";
};
};
};
config = mkIf cfg.enable {
launchd.user.agents.emacs = {
serviceConfig.ProgramArguments = [
"${cfg.package}/bin/${cfg.exec}"
"--daemon"
];
serviceConfig.RunAtLoad = true;
};
};
}