aboutsummaryrefslogtreecommitdiff
path: root/nixops/modules/mail/default.nix
blob: eeb28aafa913093ee2e231586b350db5be33c88b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, pkgs, config, myconfig, mylibs, ... }:
{
  config.services.nullmailer = {
    enable = true;
    config = {
      me = myconfig.env.mail.host;
      remotes = "${myconfig.env.mail.relay} smtp";
    };
  };
}