Browse Source

Add nix shell for dev stuff

Signed-off-by: William Casarin <jb55@jb55.com>
profiles-everywhere
William Casarin 2 years ago
parent
commit
ae68d8a7e3
  1. 2
      .envrc
  2. 5
      shell.nix

2
.envrc

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

5
shell.nix

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