A lot of the settings in the Odoo settings page are fields on the res.company
model. You could extend the res.company
model with the default overridden.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
some_overridden_setting = fields.Boolean(default=True)