4 lines
94 B
Nix
4 lines
94 B
Nix
{ pkgs ? import (import ./npins).nixpkgs {} }:
|
|
pkgs.mkShell {
|
|
packages = [ pkgs.nodejs ];
|
|
}
|