1
0

Add shell.nix

This commit is contained in:
2023-01-19 16:59:25 +00:00
parent 05ae073fe6
commit cc26ff8626

5
shell.nix Normal file
View File

@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs; mkShell {
packages = [ go gcc qemu ];
}