Lucene.net is a self-contained search and directory utility. As far as I know it cannot be integrated with nhibernate by mappings only.
You should implement adding data to lucene index by yourself. Lucene allows to add custom fields to index so you can add your database id's of the records together with indexed texts.
For example, if you want to add text object with id to lucene index you can do it like that:
public void AddRecordToIndex(string text, int id)
{
IndexWriter writer = new IndexWriter("c:\\index\\my", new StandardAnalyzer(), true);
Document doc = new Document();
doc.add(Field.Text("contents", text));
doc.add(Field.Keyword("id", id.ToStrirng()));
writer.addDocument(doc);
}
The strategy of maintaining the index depends of your application. You can add data to index each time they are commited to database or you can do it incrementally - once a day (you have to store the information about whenever the record is indexed or not in your database table then).
If the index is created you can search it with IndexSearcher object, and then combine the search results with you NHibernate objects using the id's.