From 8762b45865f0f93de35ffbb966cc1bf81996520a Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Fri, 13 Sep 2024 11:01:41 -0400 Subject: [PATCH] Add shell.nix with some useful tools --- shell.nix | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..c961361 --- /dev/null +++ b/shell.nix @@ -0,0 +1,3 @@ +{ pkgs ? import {} }: pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; [ git vim ]; +}