Smartmontools: Difference between revisions

From NixOS Wiki
Unabomberlive (talk | contribs)
mNo edit summary
Klinger (talk | contribs)
m changed category from software to applications
 
(One intermediate revision by one other user not shown)
Line 12: Line 12:
</translate>
</translate>
<translate>
<translate>
<!--T:4-->
{{Template:file:nixos|<nowiki>{
{{Template:file:nixos|<nowiki>{
   services.smartd = {
   services.smartd = {
Line 26: Line 27:


[[Category:Hardware]]
[[Category:Hardware]]
[[Category:Software]]
[[Category:Applications]]

Latest revision as of 17:56, 25 August 2024

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 = [
      {
        device = "/dev/sda"; # FIXME: Change this to your actual disk; use lsblk to find the appropriate value
      }
    ];
  };
}