Add nix shell for dev stuff

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2022-06-18 08:49:19 -07:00
parent ac6e29b010
commit ae68d8a7e3
2 changed files with 7 additions and 0 deletions

2
.envrc
View File

@@ -1,3 +1,5 @@
use nix
export TODO_FILE=$PWD/TODO
todo.sh ls || :

5
shell.nix Normal file
View File

@@ -0,0 +1,5 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = with python3Packages; [ Mako requests ];
}