You're doing your changes in data while Configurable Underground Lengths in data-final-fixes. I think that mod grabs the distance from your mod. I can't be arsed to go through the full Lua code Configurable Underground Lengths since it uses shortened variable names which are hard to read, but I did find this:
local skip_dist_old = con.max_underground_distance - 1
This is in the method which generates underground pipe prototypes to change the distance of. It seems like the mod expects only one pipe-to-ground item per "tier" and is grabbing yours then reducing it by one. You already have a special-case exception for when that mod is active. You could simply increase the fallback underground distance in that case by one. I tried it myself, and it retained pipe distances as I've set them:
if mods["ConfigUnderLengths"] then
dist = tonumber(settings.startup["config-under-lengths-pipes-1"].value) + 1
end
I haven't tested this extensively, but it fixed my issue.