Skip to content

Commit 393bd00

Browse files
authored
feat: add nix shell (#121)
Signed-off-by: Amy <amy+git@amogus.cloud>
1 parent dd74283 commit 393bd00

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

default.nix

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
pkgs ? import <nixpkgs> { },
3+
}:
4+
5+
with pkgs;
6+
pkgs.mkShell {
7+
name = "stoatEnv";
8+
9+
buildInputs = [
10+
# Tools
11+
git
12+
gh
13+
deno
14+
15+
# Node
16+
nodejs
17+
nodejs.pkgs.pnpm
18+
];
19+
}

0 commit comments

Comments
 (0)