with import <nixpkgs> { };
pkgs.mkShell {
name = "adminEnv";
buildInputs = [
pkgs.git
pkgs.nodejs
pkgs.nodePackages.pnpm
];
}