home: mail: put modules into folders

This commit is contained in:
Bruno BELANYI 2021-09-25 15:28:45 +02:00
parent a12b629dc3
commit 544aec0d91
4 changed files with 3 additions and 3 deletions

View file

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