Add shell.nix with some useful tools

This commit is contained in:
TheWanderingCrow 2024-09-13 11:01:41 -04:00
parent 9f2cacd5b1
commit 8762b45865

3
shell.nix Normal file
View file

@ -0,0 +1,3 @@
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ git vim ];
}