nixos-config/2configs/smart-monitor.nix

19 lines
423 B
Nix
Raw Normal View History

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