aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-12-29 17:20:44 +0530
committerAkshay Nair <phenax5@gmail.com>2022-12-29 17:20:44 +0530
commitfb91cf7218f20bdb8896a2ea305aa598f9f07036 (patch)
treea9827e88c0251f69313bf0af5b843faecfc6b812 /default.nix
downloadts-types-lang-fb91cf7218f20bdb8896a2ea305aa598f9f07036.tar.gz
ts-types-lang-fb91cf7218f20bdb8896a2ea305aa598f9f07036.zip
init commit be the shit that I need to keep me lit and fit
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..54c2e27
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,14 @@
+{ pkgs ? import <nixpkgs> { }, ... }:
+
+let
+ packages = with pkgs; [
+ nodejs-18_x
+ yarn
+ typescript
+ nodePackages.typescript-language-server
+ ];
+in
+pkgs.stdenv.mkDerivation {
+ name = "typeslang";
+ buildInputs = packages;
+}