MyNixOS website logo
option

services.patroni.settings

The primary patroni configuration. See the documentation for possible values. Secrets should be passed in by using the environmentFiles option.

Declarations
Type
YAML 1.1 value
Default
{ }
Example
{
  bootstrap = {
    initdb = [
      "encoding=UTF-8"
      "data-checksums"
    ];
  };
  postgresql = {
    parameters = {
      unix_socket_directories = "/tmp";
    };
  };
}