Skip to content

Commit 89e642c

Browse files
committed
chore: add nix shell setup
Signed-off-by: Frederik Bußmann <frederik@bussmann.io>
1 parent 4b88035 commit 89e642c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-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

shell.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
3+
pkgs.mkShell {
4+
buildInputs = [
5+
pkgs.nodejs
6+
pkgs.bun
7+
pkgs.git
8+
];
9+
}

0 commit comments

Comments
 (0)