You can modify the registration template to remove the blog creation checkbox.
If you’re using the bp-default theme, create a child theme and then copy over /bp-themes/bp-default/registration/register.php to your theme.
Change this:
<p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I'd like to create a new blog', 'buddypress' ) ?></p>
to:
<input type="hidden" name="signup_with_blog" id="signup_with_blog" value="1" />
Next, change:
<div id="blog-details">
to
<div id="create-blog-details">