universe/users/profiles/emacs.nix

29 lines
458 B
Nix

{ config, pkgs, ... }: {
services.emacs.enable = true;
home = {
sessionPath = [
"${config.xdg.configHome}/emacs/bin"
];
packages = with pkgs; [
emacs
ripgrep
coreutils
cmake
fd
fzf
clang
mu
isync
tetex
jq
gnumake
shellcheck
nodejs
nodePackages.prettier
(aspellWithDicts (dicts: with dicts; [ en en-computers en-science ]))
];
};
}