1
0
Fork 0

Services: enable email for smartd

This commit is contained in:
Aires 2024-11-22 12:47:18 -05:00
parent 5394097670
commit 58d4b5a1e5
2 changed files with 31 additions and 13 deletions

View file

@ -36,18 +36,28 @@ in
###*** Configure your system below this line. ***###
# Enable dynamic DNS with Porkbun
services.ddclient = {
enable = true;
configFile = pkgs.writeText "ddclient.conf" ''
use=web, web=checkip.dyndns.com/, web-skip='IP Address'
protocol=porkbun
apikey=${config.secrets.networking.porkbun.api.apiKey}
secretapikey=${config.secrets.networking.porkbun.api.secretKey}
*.${config.secrets.networking.domains.primary},*.${config.secrets.networking.domains.blog}
cache=/tmp/ddclient.cache
pid=/var/run/ddclient.pid
'';
services = {
# Enable dynamic DNS with Porkbun
ddclient = {
enable = true;
configFile = pkgs.writeText "ddclient.conf" ''
use=web, web=checkip.dyndns.com/, web-skip='IP Address'
protocol=porkbun
apikey=${config.secrets.networking.porkbun.api.apiKey}
secretapikey=${config.secrets.networking.porkbun.api.secretKey}
*.${config.secrets.networking.domains.primary},*.${config.secrets.networking.domains.blog}
cache=/tmp/ddclient.cache
pid=/var/run/ddclient.pid
'';
};
# Monitor RAID drives using SMART
smartd.devices = [
{ device = "/dev/sda"; }
{ device = "/dev/sdb"; }
{ device = "/dev/sdc"; }
{ device = "/dev/sdd"; }
];
};
# Configure the system.

View file

@ -58,7 +58,15 @@ in
smartd = {
enable = true;
autodetect = true;
notifications.wall.enable = true;
notifications = {
wall.enable = true;
mail = lib.mkIf config.aux.system.services.msmtp.enable {
enable = true;
mailer = "/run/wrappers/bin/sendmail";
sender = "${config.networking.hostName}@${config.secrets.networking.domains.primary}";
recipient = config.secrets.users.aires.email;
};
};
};
};