12 lines
189 B
Nix
12 lines
189 B
Nix
{
|
|
services.elasticsearch = {
|
|
enable = true;
|
|
|
|
cluster_name = "elasticsearch-tanker";
|
|
single_node = true;
|
|
|
|
extraConf = ''
|
|
xpack.security.enabled: false
|
|
'';
|
|
};
|
|
}
|