Notify of disk errors via email
This commit is contained in:
23
modules/monitoring.nix
Normal file
23
modules/monitoring.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Notify when a disk starts going haywire
|
||||
services.smartd = {
|
||||
enable = true;
|
||||
notifications.mail = {
|
||||
enable = true;
|
||||
recipient = "akasroua@gmail.com";
|
||||
};
|
||||
};
|
||||
|
||||
# Enable trivial MTA for smartd notifications
|
||||
services.ssmtp = {
|
||||
enable = true;
|
||||
useTLS = true;
|
||||
useSTARTTLS = true;
|
||||
domain = "gmail.com";
|
||||
hostName = "smtp.gmail.com:587";
|
||||
authUser = "akasroua@gmail.com";
|
||||
authPassFile = "/run/keys/ssmtp";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user