If using route redistribution with OSPF there is a possibility to set it as type 1 or type 2. Dealing with IOS and NX-OS at the same time I have been searching for setting redistributing as OSPF type 1 with NX-OS. Using IOS the command for this routine it works like following

configure terminal
!
router ospf 1
 redistribute static metric 100 metric-type 1 subnets
!
end

Dealing with NX-OS there is no such way to set the OSPF metric type in the router process. NX-OS route redistribution works following way: Everything which deals with micromanagement like setting cost, type of metric or different has to be defined in a route-map. In the router process there is only a cross reference to a route map

configure terminal
!
router ospf 1
 redistribute static route-map Static-to-OSPF
!
route-map Static-to-OSPF
 set metric-type type-1
 end
!

Historically I prefer the IOS way of route redistribution, however the NX-OS way of redistributing networks seems to be more logical and consequent way. This kind of configuration makes it simpler to define a statement for a subnet type. It leaves more space for granularity. Although it is preferred to make configuration easy and simple it is possible to make super granular configuration parts one per subnet.