Add basic Nix shell
2 files changed, 10 insertions(+), 0 deletions(-) A .envrc A shell.nix
A => .envrc +1 -0
@@ 1,1 @@ +eval "$(lorri direnv)"
A => shell.nix +9 -0
@@ 1,9 @@ +{ pkgs ? import <nixpkgs> {} }: + +with pkgs; + +mkShell { + buildInputs = [ + pkgs.sbcl + ]; +}