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

13 lines
322 B
Nix
Raw Normal View History

2021-07-13 14:16:14 +00:00
{ pkgs, ... }:
{
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
};
2021-07-20 19:13:11 +00:00
Install.WantedBy = [ "default.target" ];
2021-07-13 14:16:14 +00:00
};
};
}