about summary refs log tree commit diff
path: root/users/glittershark/system/home
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-11-16T15·58-0500
committerglittershark <grfn@gws.fyi>2020-11-16T16·10+0000
commitbdc5d0cfa0b81cb36002bae0e4dcb7b43e074132 (patch)
treea811d358794cade3816f4196a452f122af4bba28 /users/glittershark/system/home
parent2e2bdf9c6ce1cd66ba5cfe1a42786a6f486b7969 (diff)
feat(gs/emacs): Add some config for vterm r/1878
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
Diffstat (limited to 'users/glittershark/system/home')
-rw-r--r--users/glittershark/system/home/modules/emacs.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/users/glittershark/system/home/modules/emacs.nix b/users/glittershark/system/home/modules/emacs.nix
index 9e9fdb6d56..b7520085f8 100644
--- a/users/glittershark/system/home/modules/emacs.nix
+++ b/users/glittershark/system/home/modules/emacs.nix
@@ -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 = {