portfolio/shell.nix
2023-11-28 16:15:51 +01:00

11 lines
169 B
Nix

let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_18
nodePackages.pnpm
nodePackages.typescript-language-server
];
}