How to configure Chromium?

Directly after I posted this, I had the right idea.

  1. a boolean should actually be a boolean and not a string
  2. i copied the settings from the headings from the list website, but that contains invisible characters between the capitalized words (wtf)
  3. some settings are only supported on Chrome OS

The working config is now:

    extraOpts = {
      "BrowserSignin" = 0;
      "SyncDisabled" = true;
      "PasswordManagerEnabled" = false;
      "BuiltInDnsClientEnabled" = false;
      "MetricsReportingEnabled" = true;
      "SpellcheckEnabled" = true;
      "SpellcheckLanguage" = [
                               "de"
                               "en-US"
                             ];
      "CloudPrintSubmitEnabled" = false;
    };
2 Likes