ircgpt/shell.nix

10 lines
91 B
Nix
Raw Permalink Normal View History

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