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