summaryrefslogtreecommitdiffstats
path: root/shell.nix
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-08-22 11:43:48 -0400
committerBrian Cully <bjc@spork.org>2025-08-22 11:43:48 -0400
commit4f7bbbf4ee269ef6638c69fc5982b0dfe4b8b947 (patch)
tree3ea8a46baa3122771cfddcecb021fea24912ef06 /shell.nix
parent40352318ad887ad0bab7c9a3d22695bbcbe9f738 (diff)
downloadautomathon-4f7bbbf4ee269ef6638c69fc5982b0dfe4b8b947.tar.gz
automathon-4f7bbbf4ee269ef6638c69fc5982b0dfe4b8b947.zip
add javascript lsp to shell.nix
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
index ab0fd32..e09e996 100644
--- a/shell.nix
+++ b/shell.nix
@@ -13,9 +13,13 @@ pkgs.mkShellNoCC {
# another, wildly different, registry.
nodePackages.npm
+ typescript-language-server
+ vscode-langservers-extracted
+
# for http.server
python3
];
+ TMPDIR = "/tmp"; # javascript lsp needs it
CARGO_HOME = "/data/bjc/cargo";
}