Add shell.nix for Nix shell environment and update bun.lock configuration

This commit is contained in:
암냥 2025-11-19 23:03:48 +09:00
commit 217f115069
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{
"lockfileVersion": 1,
"configVersion": 0,
"workspaces": {
"": {
"name": "imnya",

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
bun
];
}