portfolio/website/shell.nix

11 lines
169 B
Nix
Raw Normal View History

2023-11-21 21:23:16 +01:00
let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs_18
nodePackages.pnpm
nodePackages.typescript-language-server
];
}