nixos-config/config/services/loki.nix

17 lines
354 B
Nix
Raw Normal View History

2022-01-15 11:08:46 +00:00
{ pkgs, ... }: {
services.loki = {
enable = true;
configFile = ./loki.yaml;
};
systemd.services.promtail = {
description = "Promtail service for Loki";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
ExecStart = ''
2022-01-15 11:09:28 +00:00
${pkgs.grafana-loki}/bin/promtail --config.file ${./promtrail.yaml}
2022-01-15 11:08:46 +00:00
'';
};
};
}