17 lines
253 B
Nix
17 lines
253 B
Nix
# Module: base/grafana-alloy
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
options,
|
|
...
|
|
}:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [ grafana-alloy ];
|
|
services.alloy.enable = true;
|
|
|
|
# Fixes issue with node_exporter
|
|
services.dbus.implementation = "broker";
|
|
}
|