Run a function only on a certain condition

To explain this better imagine the following scenario. On the home page we wish to display the list of links (blogroll), the code for this is below.

<?php
if (is_home())
{
wp_list_bookmarks();
}
?>