stockholm/makefu/2configs/smart-monitor.nix

19 lines
362 B
Nix
Raw Normal View History

2015-12-29 20:20:36 +00:00
{ config, ... }:
{
services.smartd = {
enable = true;
notifications = {
mail = {
enable = true;
recipient = config.krebs.users.makefu.mail;
};
};
# short daily, long weekly, check on boot
defaults.monitored = "-a -o on -s (S/../.././02|L/../../7/04)";
devices = [{
device = "/dev/sda";
}];
};
}