Remove sidebar from blog

Was wondering how you can remove the sidebar from the blog page. I tried adding it to the array in config.php:
array('is_page', 'blog')

but it still displays.

thoughts?

You can use is_home as part of the first array.

@Foxaii that worked, thanks! and for individual blog posts?

You can use is_singular and pass the post type(s) as the argument. Again it belongs in the first array.

Awesome, thanks so much. Really enjoying developing with Roots