MyNixOS website logo
option

services.clickhouse.serverConfig

Your config.yaml as a Nix attribute set. Check the documentation for possible options.

Declarations
Type
YAML 1.1 value
Default
{ }
Example
{
  http_port = 8123;
  tcp_port = 9000;

  remote_servers = {
    default = {
      shard = {
        replica = [
          { host = "::"; port = "9000"; }
          { host = "::"; port = "9001"; }
          { host = "::"; port = "9002"; }
        ];
      };
    };
  };
}