Price Hiller
2af120de1c
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 49s
15 lines
228 B
Nix
15 lines
228 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.emacs = {
|
|
enable = true;
|
|
package = pkgs.emacs-unstable;
|
|
extraPackages = (
|
|
epkgs:
|
|
(with epkgs; [
|
|
treesit-grammars.with-all-grammars
|
|
vterm
|
|
])
|
|
);
|
|
};
|
|
}
|