10 lines
146 B
Nix
10 lines
146 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let
|
||
|
cfg = config.my.home.mail.msmtp;
|
||
|
in
|
||
|
{
|
||
|
config.programs.msmtp = lib.mkIf cfg.enable {
|
||
|
enable = true;
|
||
|
};
|
||
|
}
|