blob: eeb28aafa913093ee2e231586b350db5be33c88b (
plain) (
tree)
|
|
{ lib, pkgs, config, myconfig, mylibs, ... }:
{
config.services.nullmailer = {
enable = true;
config = {
me = myconfig.env.mail.host;
remotes = "${myconfig.env.mail.relay} smtp";
};
};
}
|