From ae68d8a7e333530459fbf55daf39e787c363dfcb Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sat, 18 Jun 2022 08:49:19 -0700 Subject: [PATCH] Add nix shell for dev stuff Signed-off-by: William Casarin --- .envrc | 2 ++ shell.nix | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 shell.nix diff --git a/.envrc b/.envrc index 5a4cf11..72617b2 100644 --- a/.envrc +++ b/.envrc @@ -1,3 +1,5 @@ +use nix + export TODO_FILE=$PWD/TODO todo.sh ls || : diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..997ed45 --- /dev/null +++ b/shell.nix @@ -0,0 +1,5 @@ +{ pkgs ? import {} }: +with pkgs; +mkShell { + buildInputs = with python3Packages; [ Mako requests ]; +}