Hi Alex,
as it seems, Nakagami is slightly better. But if you let the system decide, the NormalDistribution winns:
gam = EstimatedDistribution[data, GammaDistribution[\[Alpha], \[Beta]]];
nak = EstimatedDistribution[data, NakagamiDistribution[\[Mu], \[Omega]]];
best = FindDistribution[data];
plot = Plot[{PDF[gam, x], PDF[nak, x], PDF[best, x]}, {x, Min[data], Max[data]}, PlotStyle -> {Red, Green, {Dashed, Blue}}, PlotLabels -> {"Gamma", "Nakagami", "best:Normal"}];
Show[Histogram[data, Automatic, "PDF"], plot, PlotRange -> {{4, 17.7}, Automatic}, ImageSize -> Large]

Does that help? Regards -- Henrik