19 lines
422 B
Nix
19 lines
422 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
### --> SMART disk heath
|
|
services.smartd = {
|
|
enable = true;
|
|
defaults.autodetected = "-a -o on -S on -s (S/../.././00|L/../../6/01) -n standby,q";
|
|
notifications = {
|
|
wall = {
|
|
enable = true;
|
|
};
|
|
mail = {
|
|
enable = true;
|
|
sender = config.email.fromAddress;
|
|
recipient = config.email.toAddress;
|
|
};
|
|
};
|
|
};
|
|
### SMART disk heath <--
|
|
} |