singhularity: add comment to defaultToSuid

Add comment above "defaultToSuid = true" to explain it
and to keep it multi-line after formatting.

+3
+3
pkgs/applications/virtualization/singularity/packages.nix
··· 64 extraMeta.homepage = "https://sylabs.io/"; 65 }) 66 { 67 defaultToSuid = true; 68 }; 69
··· 64 extraMeta.homepage = "https://sylabs.io/"; 65 }) 66 { 67 + # Sylabs SingularityCE builders defaults to set the SUID flag 68 + # on UNIX-like platforms, 69 + # and only have --without-suid but not --with-suid. 70 defaultToSuid = true; 71 }; 72