9 lines
124 B
Nix
9 lines
124 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
nodejs_20
|
|
];
|
|
shellHook = ''
|
|
'';
|
|
}
|