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

19 lines
423 B
Nix
Raw Normal View History

{ config, lib, ... }:
2015-12-29 20:20:36 +00:00
{
krebs.exim-retiolum.enable = lib.mkDefault true;
2015-12-29 20:20:36 +00:00
services.smartd = {
enable = true;
autodetect = false;
2015-12-29 20:20:36 +00:00
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)";
2016-01-14 11:42:52 +00:00
devices = lib.mkDefault [ ];
2015-12-29 20:20:36 +00:00
};
}