29 lines
776 B
Nix
29 lines
776 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
systemd.services.telegraf.path = [ pkgs.smartmontools pkgs.nvme-cli "/run/wrappers" ];
|
||
|
environment.systemPackages = [ pkgs.smartmontools pkgs.nvme-cli ];
|
||
|
|
||
|
services.telegraf = {
|
||
|
enable = true;
|
||
|
extraConfig.inputs.smart = {
|
||
|
attributes = true;
|
||
|
use_sudo = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.smartd.enable = true;
|
||
|
security.sudo.configFile = ''
|
||
|
# For smartctl add the following lines:
|
||
|
Cmnd_Alias SMARTCTL = ${pkgs.smartmontools}/bin/smartctl
|
||
|
telegraf ALL=(ALL) NOPASSWD: SMARTCTL
|
||
|
Defaults!SMARTCTL !logfile, !syslog, !pam_session
|
||
|
|
||
|
# For nvme-cli add the following lines:
|
||
|
Cmnd_Alias NVME = ${pkgs.nvme-cli}/bin/nvme
|
||
|
telegraf ALL=(ALL) NOPASSWD: NVME
|
||
|
Defaults!NVME !logfile, !syslog, !pam_session
|
||
|
'';
|
||
|
|
||
|
}
|
||
|
|