5 lines
91 B
Plaintext
5 lines
91 B
Plaintext
|
{ pkgs ? import <nixpkgs> { } }: pkgs.mkShell {
|
||
|
packages = with pkgs; [
|
||
|
nodejs
|
||
|
];
|
||
|
}
|