How do I add a filter to wp_list_categories() to make links nofollow?

try:

add_filter('wp_list_categories','esc_wp_rel_nofollow');

function esc_wp_rel_nofollow($output){
   return   stripslashes(wp_rel_nofollow($output));
}

tech