ergogen/shell.nix
Stefan Schwarz 96d043126a wip
2024-02-23 17:55:10 +01:00

8 lines
120 B
Nix

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