From 8356a7ad7c136f556cf9ef4e29c23ebe52d196ba Mon Sep 17 00:00:00 2001 From: aster <137767097+aster-void@users.noreply.github.com> Date: Sun, 13 Jul 2025 20:56:16 +0900 Subject: [PATCH] init shell.nix and .envrc --- .envrc | 1 + .gitignore | 1 + shell.nix | 7 +++++++ 3 files changed, 9 insertions(+) create mode 100644 .envrc create mode 100644 shell.nix diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use nix diff --git a/.gitignore b/.gitignore index 114a0ff..0d01c0d 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ bun.lockb # misc .DS_Store *.pem +.direnv # debug npm-debug.log* diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..ea83a9f --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{pkgs ? import {}}: +pkgs.mkShell { + packages = with pkgs; [ + nodejs-slim + bun + ]; +}