Add shell.nix

This commit is contained in:
2024-02-12 23:00:39 +01:00
parent 0961c1985d
commit e1452cc44e

6
shell.nix Normal file
View File

@@ -0,0 +1,6 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
];
}