ergogen/shell.nix
Stefan Schwarz 3a66245670 wip
2022-03-22 20:10:26 +01:00

8 lines
120 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
nodejs-16_x
];
}