vyx-hex/shell.nix

9 lines
106 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.nodejs
];
}