Show specific category posts on Genesis framework home page

Also using query_posts() is highly discouraged. If you need a second loop, use new WP_Query() or if you want to adjust the main loop then use pre_get_posts. If you home page is not a static page, then this should work regardless of what theme you use. (Goes in functions.php… preferably a child theme if you are working with a framework)

function wpa84417_include_cat( $query ) {
    if ( is_home() && is_main_query() ) {
        set_query_var( 'cat', '33' );
    }
}
add_action( 'pre_get_posts', 'wpa84417_include_cat' );