wrbapp/shell.nix
Xeovalyte 6cc14bcaf0
All checks were successful
Build and Deploy / Deploy (push) Successful in 4m36s
Added linking styles with messages
2023-11-27 15:55:16 +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
];
}