Show Comment Form on Home and Archive Pages

function add_genesis_comments() {
    global $withcomments;
    if ( is_archive() || is_home() ) {
    $withcomments = 1;
    comments_template();
        }
}

add_action( 'genesis_after_entry', 'add_genesis_comments' );