I cannot get pagination to work on my home page code. it keeps displaying the same posts

Change $postArgs to:

$postArgs = array('post_type' => 'post', 'paged' => $paged);

Everything else in the array u have up there is default and unnecessary.

Also add $the_query->rewind_posts(); after the first endwhile;

Update

Fix for pagination issues:

global $wp_query;
$paged = ($wp_query->query['paged']) ? $wp_query->query['paged'] : 1;