ergogen/shell.nix
Stefan Schwarz 2958f1b9c0 wip
2023-02-05 21:58:38 +01:00

8 lines
120 B
Nix

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