If you don't like certain things, just don't use them in your configs (i.e. tables)
Not from TOML, just from my config language. TOML has other applications that require its complexity.
I'd still keep simple INI style sections in my config lang, but they wouldn't have deeper meaning apart from grouping.
For example, I’ve seen booleans being represented with “enable”/“disable”, “yes”/“no”, “t”/“f”, “1”/“0”. Sometimes a mix in the same program.
It’s nice that every TOML config requires “true”/“false” across any application.
data = [ ["delta", "phi"], [3.14] ]
temp_tagets = { cpu = 79.5, case = 72.0 }