System/home-manager/modules/programs/emacs.nix
2024-11-29 10:47:47 +00:00

65 lines
1.1 KiB
Nix

{
emacsPackage ? null,
}:
{
config,
lib,
pkgs,
...
}:
let
myAspell = pkgs.aspellWithDicts (d: [
d.en
d.en-science
d.en-computers
]);
emacsPackage' = if emacsPackage == null then pkgs.emacs30-pgtk else emacsPackage;
in
{
home.packages = with pkgs; [
# For markdown rendering
python312Packages.grip
# For graph generation
graphviz
sqlite
plantuml
# For latex editing
texlive.combined.scheme-medium
# For notifications
libnotify
# For spelling
myAspell
# For nix
# rnix-lsp
manix
nix-doc
# For email
mu
meson
pkg-config
glib
# Desktop file for org-protocol
(makeDesktopItem {
name = "org-protocol";
exec = "emacsclient %u";
comment = "Org protocol";
desktopName = "org-protocol";
type = "Application";
mimeTypes = [ "x-scheme-handler/org-protocol" ];
})
# For format output
# wkhtmltopdf
];
programs.emacs = {
enable = true;
package = emacsPackage';
extraPackages = epkgs: [
epkgs.mu4e
epkgs.vterm
epkgs.pdf-tools
epkgs.emacsql
epkgs.emacsql-sqlite
];
};
}