How to make a custom search template for custom taxonomy?

I added this code before my loop and separated the custom taxonomy templates rather than pointing them to one general search template to display results based on the current taxonomy. Hope this helps someone.

$current_cat = get_query_var('model');
                  $args = array(
                    'post_type' => 'truck',
                    'model' => $current_cat
                  );
                 query_posts($args);