In the current tagged release (0.9) we do not have any built in support for model validation. However with the pending (most likely this weekend) 0.10 release we are adding support for model validation and will be shipping nuget packages for using either data annotations or fluent validation.
The master branch contains a demo project that shows how to use them https://github.com/NancyFx/Nancy/tree/master/src/Nancy.Demo.Validation
Of course the validation stuff is extensible and you can provide your own implementations for the validation framework of your own choice. The Nancy core only contains a small set of extensibility points and then the actual implementations are shipped as separate nugets.
The 0.10 release will contain the first building blocks for allowing the creation of client-side validation based on your model. However, the 0.10 release will not contain the actual client side validation stuff, but the hooks to extract the validation information is there as shown in this sample module
https://github.com/NancyFx/Nancy/blob/master/src/Nancy.Demo.Validation/ProductsModule.cs#L16
Hope this helps!