From 217f115069983fce759aceefe8a620d47d830213 Mon Sep 17 00:00:00 2001 From: imnyang Date: Wed, 19 Nov 2025 23:03:48 +0900 Subject: [PATCH] Add shell.nix for Nix shell environment and update bun.lock configuration --- bun.lock | 1 + shell.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 shell.nix diff --git a/bun.lock b/bun.lock index 4997316..cbfc644 100644 --- a/bun.lock +++ b/bun.lock @@ -1,5 +1,6 @@ { "lockfileVersion": 1, + "configVersion": 0, "workspaces": { "": { "name": "imnya", diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..f46cc0e --- /dev/null +++ b/shell.nix @@ -0,0 +1,7 @@ +{ pkgs ? import {}}: + +pkgs.mkShell { + packages = with pkgs; [ + bun + ]; +} \ No newline at end of file