At least one of the errata defines in the HAL headers is ignored by the driver implementing the device.
e.g. the following line claims to control whether the workaround for errata 195 is enabled (Through NRF52_ERRATA_195_ENABLE_WORKAROUND).
Searching through the nrfx codebase shows that the define is used nowhere else, giving the impression that the errata is not actually being handled.
However dig into the drivers and you find a completely separate set of defines controlling the behaviour (USE_WORKAROUND_FOR_ANOMALY_195):
Based on a quick search in the HAL module, it appears to be a common pattern that `USE_WORKAROUND_FOR_ANOMALY_` is defined and used in the drivers, ignoring any values from the headers.

