1
0
Fork 0
nixos-config/home-manager/roles/systemd-exporter.nix

12 lines
318 B
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
{pkgs, ...}: {
2021-07-13 14:16:14 +00:00
systemd.user = {
services.prometheus-systemd-exporter = {
Unit.Description = "Prometheus systemd exporter";
Service = {
2021-07-20 19:13:11 +00:00
ExecStart = "${pkgs.prometheus-systemd-exporter}/bin/systemd_exporter --collector.user";
2021-07-13 14:16:14 +00:00
};
2022-03-08 01:42:46 +00:00
Install.WantedBy = ["default.target"];
2021-07-13 14:16:14 +00:00
};
};
}