Add shell.nix

This commit is contained in:
2025-02-10 23:04:46 +01:00
parent e79a6c198e
commit 8fe6338136

9
shell.nix Normal file
View File

@@ -0,0 +1,9 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs
eslint_d
prettierd
yarn
];
}