pub.solar/shell.nix
2021-05-30 16:55:34 +02:00

8 lines
89 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.nodejs
];
}