nixos/system/home/emacs/default.nix
2025-02-12 09:16:59 +00:00

40 lines
741 B
Nix

{
pkgs,
config,
...
}:
{
imports = [
../shell/default.nix
../shell/git.nix
../gpg/default.nix
../texlive/default.nix
../programming/default.nix
];
home.sessionVariables = with config.programs; {
EDITOR = "${emacs.finalPackage}/bin/emacs -nw";
VISUAL = "${emacs.finalPackage}/bin/emacs";
};
programs.emacs = {
enable = true;
package = pkgs.emacs30.override {
withImageMagick = true;
withPgtk = true;
};
extraPackages = epkgs: import ./packages.nix { inherit epkgs; };
};
home.packages = with pkgs; [
# External requirements
gcc
languagetool
wordnet
pandoc
ghostscript
mupdf-headless
poppler_utils
graphviz-nox
toolbox
];
}