Jump to content

Translations:Smartmontools/4/en: Difference between revisions

From NixOS Wiki
FuzzyBot (talk | contribs)
Importing a new version from external source
(No difference)

Revision as of 04:08, 1 August 2024

Message definition (Smartmontools)
[[Category:Hardware]]
[[Category:Applications]]
❄︎ /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
      }
    ];
  };
}