At present your home page is displaying the name of your blog (which is changed under Settings > General) and then the description (also known as the tagline).
To get what you want try this:
<title>
<?php if (is_home ()) { ?>
Home -
<?php bloginfo('name'); ?>
-
<?php bloginfo('description'); ?>
<?php } else { ?>
<?php wp_title($sep = ''); ?>
-
<?php bloginfo('name'); ?>
-
<?php bloginfo('description'); ?>
<?php } ?>
</title>
That should work.