vyx-hex/shell.nix

9 lines
106 B
Nix
Raw Permalink Normal View History

2021-09-17 18:43:42 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.nodejs
];
}