feat: add nix config

This commit is contained in:
taskylizard
2024-08-29 18:30:50 +00:00
parent 9589cd07ec
commit a334a69e1c

7
default.nix Normal file
View File

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