home: mail: add msmtp

This commit is contained in:
Bruno BELANYI 2021-05-22 16:09:11 +02:00
parent 182ec2a4db
commit d31e293cef
3 changed files with 30 additions and 1 deletions

9
home/mail/msmtp.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.mail.msmtp;
in
{
config.programs.msmtp = lib.mkIf cfg.enable {
enable = true;
};
}