MyNixOS website logo
option

programs.element-desktop.settings

Configuration settings for Element's default profiles. WARNING: Element doesn't combine this config with the defaults, so make sure to configure most options. For details about this behavior and available configuration options see: https://github.com/element-hq/element-web/blob/develop/docs/config.md.

Declarations
Type
JSON value
Default
{ }
Example
''
  {
    default_server_config = {
      "m.homeserver" = {
          base_url = "https://matrix-client.matrix.org";
          server_name = "matrix.org";
      };
      "m.identity_server" = {
          base_url = "https://vector.im";
      };
    };
    disable_custom_urls = false;
    disable_guests = false;
    disable_login_language_selector = false;
    disable_3pid_login = false;
    force_verification = false;
    brand = "Element";
    integrations_ui_url = "https://scalar.vector.im/";
    integrations_rest_url = "https://scalar.vector.im/api";
  }
''