Hi there,
you can use a PHP snippet like this to change the posts per page for a specific category:
add_action('pre_get_posts', 'custom_posts_per_page');
function custom_posts_per_page($query) {
if (is_category( 'category-slug' );) {
$query->set('posts_per_page', 10);
}
}