1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/modules/services/emacs.nix
Piotr Limanowski 3fabc3d842
use fg-daemon flag for emacs service
As the default package is now emacs 26.1 and --daemon flag falls back to forking behaviour the recommended way is to use fg-daemon, see: lists.gnu.org/archive/html/emacs-devel/2016-11/msg00383.html, lists.gnu.org/archive/html/emacs-devel/2017-05/msg00861.html
2018-09-03 19:54:56 +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.str;
default = "emacs";
description = "Emacs command/binary to execute.";
};
};
};
config = mkIf cfg.enable {
launchd.user.agents.emacs = {
serviceConfig.ProgramArguments = [
"${cfg.package}/bin/${cfg.exec}"
"--fg-daemon"
];
serviceConfig.RunAtLoad = true;
};
};
}