chore: add default.nix

master
izzy 2025-08-07 12:04:45 +02:00
parent cce94d2e0e
commit 56af4b9423
1 changed files with 8 additions and 0 deletions

8
default.nix Normal file
View File

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