How to remove comment in genesis

Paste below code in functions.php to remove comment section from front end in genesis.

add_action( 'wp_enqueue_scripts', 'nm_custom_remove_comments' );

function nm_custom_remove_comments() {
        remove_action( 'genesis_after_post', 'genesis_get_comments_template' );
}