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

93 lines
2.2 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
2023-03-04 14:25:40 +01:00
emacsWithPackages = pkgs.emacsWithPackagesFromUsePackage {
# config = ./config.org;
config =
let
tangledOrgConfig = pkgs.runCommand "tangled-emacs-config" { } ''
cp ${./config.org} ./config.org
${cfg.package}/bin/emacs --batch -Q ./config.org -f org-babel-tangle
cp init.el $out
'';
in
builtins.readFile tangledOrgConfig;
defaultInitFile = true;
package = cfg.package;
alwaysEnsure = true;
alwaysTangle = true;
extraEmacsPackages = epkgs: [
epkgs.emacsql
epkgs.emacsql-sqlite
];
};
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";
2023-03-04 14:25:40 +01:00
# exec = "${cfg.package}/bin/emacsclient -- %u";
exec = "${emacsWithPackages}/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;
2023-03-04 14:25:40 +01:00
# package = cfg.package;
package = emacsWithPackages;
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;
2023-03-04 14:25:40 +01:00
# package = cfg.package;
package = emacsWithPackages;
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
2022-11-22 19:59:37 +01:00
nil
2023-03-04 14:25:40 +01:00
python3
lldb
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
};
}