commit ae68d8a7e333530459fbf55daf39e787c363dfcb
parent ac6e29b010b1d851febee4c8b9f032769b79cbba
Author: William Casarin <jb55@jb55.com>
Date: Sat, 18 Jun 2022 08:49:19 -0700
Add nix shell for dev stuff
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git 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
@@ -0,0 +1,5 @@
+{ pkgs ? import <nixpkgs> {} }:
+with pkgs;
+mkShell {
+ buildInputs = with python3Packages; [ Mako requests ];
+}