Absolutely – you can target your homepage with a little PHP magic:
add_filter( 'generate_sidebar_layout','generate_custom_blog_sidebar_layout' );
function generate_custom_blog_sidebar_layout( $layout )
{
// If we are on the posts page, set the sidebar
if ( is_home() )
return 'both-right';
// Or else, set the regular layout
return $layout;
}
Adding PHP: http://generatepress.com/knowledgebase/adding-php-functions/
Then your other areas (categories, archives) should take on the layout you have set with the Blog Layout option.
Let me know ๐