ircgpt/shell.nix

10 lines
91 B
Nix
Raw Normal View History

2023-03-07 03:30:39 +00:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
nodejs
];
}