Create your own daohome.ftl, based on the one in the hibernate-tools package and change the package declaration appropriately. This probably should be configurable. Anywho, an example
Code:
package eg.hibernate.dao;
// Generated ${date} by Hibernate Tools ${version}
<#assign classbody>
<#assign declarationName = pojo.importType(pojo.getDeclarationName())>/**
* Home object for domain model class ${declarationName}.
* @see ${pojo.getQualifiedDeclarationName()}
* @author Hibernate Tools
*/
// ...etc
Then you have to specify the templatepath and destdir (this is for Ant, I don't use the console much). As a benefit, you can tweak the dao generated to suit your needs much better this way as well. The dao generated by default is a bit skeletal for my needs, but futzing around with the templates allows me to generate dao interfaces and implementations, integrated bidirectional collection management, more finder methods, etc.