Skip to content

Commit ecedbb2

Browse files
committed
nix shell
1 parent 366f2bb commit ecedbb2

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use_nix

shell.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
pkgs.mkShell {
3+
# nativeBuildInputs is usually what you want -- tools you need to run
4+
nativeBuildInputs = [
5+
pkgs.racket-minimal
6+
];
7+
8+
shellHook = ''
9+
echo starting...
10+
'';
11+
}

0 commit comments

Comments
 (0)