feat(gs/emacs): Add some config for vterm

for some reason installing it directly via nix doesn't work atm, so I
have this hack here

Change-Id: I45093633c35e756988078eb136c6e7bc3c532eea
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2078
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-11-16 10:58:28 -05:00 committed by glittershark
parent 2e2bdf9c6c
commit bdc5d0cfa0
3 changed files with 34 additions and 5 deletions

View file

@ -53,10 +53,15 @@ in {
programs.emacs = {
enable = true;
package = pkgs.emacsUnstable;
extraPackages = (epkgs: with depot.tools.emacs-pkgs; [
dottime
tvl
]);
extraPackages = (epkgs:
(with depot.tools.emacs-pkgs; [
dottime
tvl
])
++ (with depot.third_party.emacs; [
vterm
])
);
};
grfn.impure.clonedRepos = {