feat: add nix config

This commit is contained in:
taskylizard 2024-08-29 18:30:50 +00:00
parent 9589cd07ec
commit a334a69e1c
No known key found for this signature in database
GPG key ID: 1820131ED1A24120

7
default.nix Normal file
View file

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