chore: add default.nix

This commit is contained in:
izzy
2025-08-07 12:04:45 +02:00
parent cce94d2e0e
commit 56af4b9423

8
default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell rec {
buildInputs = [
pkgs.nodejs
pkgs.nodejs.pkgs.yarn
];
}