diff options
Diffstat (limited to 'shells/hare')
| -rw-r--r-- | shells/hare/.envrc | 1 | ||||
| -rw-r--r-- | shells/hare/shell.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/shells/hare/.envrc b/shells/hare/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/shells/hare/.envrc @@ -0,0 +1 @@ +use nix diff --git a/shells/hare/shell.nix b/shells/hare/shell.nix new file mode 100644 index 0000000..9fbe37c --- /dev/null +++ b/shells/hare/shell.nix @@ -0,0 +1,4 @@ +{ + pkgs ? import <nixpkgs> { }, +}: +pkgs.mkShell { packages = [ pkgs.hare ]; } |