15 lines
355 B
Nix
15 lines
355 B
Nix
{ ... }:
|
|
{
|
|
services.loki = {
|
|
enable = true;
|
|
#configFile = "./loki-local-config.yaml";
|
|
# Nix Object representing the data that might otherwise be in a YAML config
|
|
# https://github.com/grafana/loki/blob/main/cmd/loki/loki-local-config.yaml
|
|
configuration = {
|
|
auth_enabled = false;
|
|
server = {
|
|
|
|
};
|
|
};
|
|
};
|
|
}
|