portfolio/shell.nix

11 lines
169 B
Nix
Raw Permalink Normal View History

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