1{ 2 pkgs ? import <nixpkgs> { }, 3}: 4 5pkgs.mkShell { 6 buildInputs = with pkgs; [ nodejs_24 jq ]; 7 shellHook = "echo \"Use \"npm run frontend:develop:prod\" to start the development server, make sure to clear your cache if you run a switch servers!\""; 8}