Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 432 B View raw
1{ config, ... }: 2{ 3 imports = [ ./msmtp.nix ]; 4 5 services.smartd = { 6 enable = true; 7 extraOptions = [ "-i 7200" ]; 8 # defaults.monitored = "-a -M test"; # Used for testing sendmail 9 notifications = { 10 wall.enable = false; 11 x11.enable = false; 12 mail = { 13 enable = true; 14 sender = "infra+${config.networking.hostName}@biota.cafe"; 15 recipient = "dev@mou.pink"; 16 }; 17 }; 18 }; 19}