services.patroni.settings
NixOS option
The primary patroni configuration. See the documentation for possible values. Secrets should be passed in by using the environmentFiles option.
type: YAML 1.1 valueDefault
{ }Example
declared in: nixos/modules/services/cluster/patroni/default.nixView source on NixOS/nixpkgs →{
bootstrap = {
initdb = [
"encoding=UTF-8"
"data-checksums"
];
};
postgresql = {
parameters = {
unix_socket_directories = "/tmp";
};
};
}