13 lines
145 B
Nix
13 lines
145 B
Nix
let
|
|
pkgs = import <nixpkgs> {
|
|
overlays = [ ];
|
|
};
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
nodejs
|
|
];
|
|
|
|
shellHook = ''
|
|
'';
|
|
} |