this repo has no description
1{
2 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
3
4 outputs =
5 { nixpkgs, ... }:
6 let
7 system = "x86_64-linux";
8 pkgs = import nixpkgs { inherit system; };
9 in
10 {
11 devShells.${system}.default = pkgs.mkShell {
12 packages = with pkgs; [
13 nodejs
14 pnpm
15 typescript
16 typescript-language-server
17 ];
18 };
19 };
20}