7 lines
99 B
Nix
7 lines
99 B
Nix
let
|
|
pkgs = import <nixpkgs> {};
|
|
in pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
];
|
|
}
|