{ outputs = { nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: { devShells.default = with import nixpkgs { inherit system; }; mkShell { buildInputs = [ nodejs ]; }; }); }