How can i change configs of strapi's users and permissions plugin's providers?

I would like to automatically enable google provider of the users and permissions plugin. I do not want to manually enter to the strapi admin page and enable it whenever I initialize my program just like the image I attached below. How can I do that? Is there any way update the configs in plugins.js file in the following format?

 "users-permissions": {
    config: {
      provider: 'google',
      providerOptions: {
        enabled: true
      }
    }
  }