nixos-config/home-manager/modules/emacs/default.nix

67 lines
1.4 KiB
Nix
Raw Normal View History

{ pkgs
, config
, lib
, ...
2022-03-01 22:19:03 +01:00
}:
with lib; let
cfg = config.eboskma.programs.emacs;
2022-04-22 00:14:35 +02:00
2022-03-28 14:26:33 +02:00
orgProtocolDesktop = pkgs.makeDesktopItem {
name = "org-protocol";
desktopName = "Emacs Org Protocol Handler";
icon = "emacs";
categories = [ "Development" "TextEditor" ];
keywords = [ "org-protocol" ];
2022-03-28 14:26:33 +02:00
type = "Application";
exec = "${cfg.package}/bin/emacsclient -- %u";
2022-03-28 14:26:33 +02:00
terminal = false;
mimeTypes = [ "x-scheme-handler/org-protocol" ];
2022-03-28 14:26:33 +02:00
startupWMClass = "Emacs";
};
in
{
2022-03-28 14:26:33 +02:00
options.eboskma.programs.emacs = {
enable = mkEnableOption "activate emacs";
2022-07-29 09:57:50 +02:00
package = mkOption {
description = "The emacs package to install";
type = types.package;
2022-11-17 14:06:39 +01:00
default = pkgs.emacs;
2022-07-29 09:57:50 +02:00
};
2022-08-18 16:37:26 +02:00
2022-03-28 14:26:33 +02:00
daemon = mkOption {
description = "Whether to enable emacs daemon";
type = types.bool;
default = true;
example = false;
};
};
2022-02-09 08:13:16 +01:00
2022-05-03 18:17:38 +02:00
config = mkIf cfg.enable {
2022-02-03 22:57:53 +01:00
programs.emacs = {
enable = true;
package = cfg.package;
2022-02-03 22:57:53 +01:00
};
2022-03-28 14:26:33 +02:00
2022-05-03 18:17:38 +02:00
services.emacs = mkIf cfg.daemon {
2022-03-28 14:26:33 +02:00
enable = true;
package = cfg.package;
2022-03-28 14:26:33 +02:00
client.enable = true;
socketActivation.enable = true;
};
2022-03-18 21:14:51 +01:00
home.packages = with pkgs; [
(texlive.combine {
inherit (texlive) scheme-small wrapfig ulem capt-of;
})
2022-03-29 09:31:35 +02:00
orgProtocolDesktop
nodePackages.bash-language-server
2022-06-24 11:17:11 +02:00
aspell
rnix-lsp
python310
2022-06-24 11:17:11 +02:00
] ++
2022-06-28 09:00:27 +02:00
(with aspellDicts; [ en en-computers en-science fy nl ]);
2022-05-28 17:08:20 +02:00
2022-02-03 22:57:53 +01:00
};
}