bazel: close #70911 by conditionally loading system wide configuration

Some system may setup global informations (such as bazel cache location)
in /etc/bazel.bazelrc

+3
+3
pkgs/development/tools/build-managers/bazel/default.nix
··· 133 build --override_repository=${remote_java_tools.name}=${remote_java_tools} 134 build --distdir=${distDir} 135 startup --server_javabase=${runJdk} 136 ''; 137 }; 138
··· 133 build --override_repository=${remote_java_tools.name}=${remote_java_tools} 134 build --distdir=${distDir} 135 startup --server_javabase=${runJdk} 136 + 137 + # load default location for the system wide configuration 138 + try-import /etc/bazel.bazelrc 139 ''; 140 }; 141