15 lines
228 B
Nix

{ pkgs, ... }:
{
programs.emacs = {
enable = true;
package = pkgs.emacs-unstable;
extraPackages = (
epkgs:
(with epkgs; [
treesit-grammars.with-all-grammars
vterm
])
);
};
}