mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-09 10:17:02 +00:00
41 lines
670 B
Nix
41 lines
670 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.";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
|
||
|
launchd.user.agents.emacs = {
|
||
|
serviceConfig.ProgramArguments = [
|
||
|
"${cfg.package}/bin/emacs"
|
||
|
"--daemon"
|
||
|
];
|
||
|
serviceConfig.RunAtLoad = true;
|
||
|
};
|
||
|
|
||
|
};
|
||
|
}
|