Unfortunately, the MS Store is the only place where this information can be found in Lansweeper right now. You could automate it somewhat by providing a list of known distro's in the query, for example:
Select Top 1000000 tblAssets.assetid,
tblAssets.AssetName,
tsysOS.Image As icon,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Description,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Location,
tsysIPLocations.IPLocation,
tsysOS.OSname As OS,
tblAssets.SP As SP,
tblAssets.OScode + '.' + tblAssets.BuildNumber As Build,
tblAssets.Version As [OS Version],
tblAssets.Firstseen As [Created at],
tblAssets.Lastseen As [Last successful scan]
From tblSoftware
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblSoftware.assetid = tblAssetCustom.AssetID
Inner Join tblAssets On tblAssets.AssetID = tblSoftware.assetid
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Left Join tsysIPLocations On tblAssets.LocationID = tsysIPLocations.LocationID
Where (tblSoftwareUni.softwareName Like '%ubuntu%' Or
tblSoftwareUni.softwareName Like '%suse%' Or tblSoftwareUni.softwareName
Like '%debian%' Or tblSoftwareUni.softwareName Like '%kali%') And
tblAssetCustom.State = 1
Order By tblAssets.AssetName