smartmontools

From NixOS Wiki
Revision as of 04:07, 1 August 2024 by FuzzyBot (talk | contribs) (Updating to match new version of source page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Warning: Display title "smartmontools" overrides earlier display title "Smartmontools". smartmontools is a package which provides tools for monitoring drives which support the S.M.A.R.T. system for monitoring hard drive health. It includes the smartd and smartctl programs. smartd can be enabled on NixOS systems with the services.smartd module.

Example

/etc/nixos/configuration.nix
{
  services.smartd = {
    enable = true;
    devices = [
      {
        <translate>
        device = "/dev/sda"; # FIXME: Change this to your actual disk; use lsblk to find the appropriate value
</translate>
      }
    ];
  };
}