aboutsummaryrefslogtreecommitdiff
path: root/nixops/modules/mail.nix
blob: 993e5f1de65167c4865111e175f2c80e25fd7722 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, pkgs, config, myconfig, mylibs, ... }:
{
  config.users.users.nullmailer.uid = config.ids.uids.nullmailer;
  config.users.groups.nullmailer.gid = config.ids.gids.nullmailer;

  config.services.nullmailer = {
    enable = true;
    config = {
      me = myconfig.env.mail.host;
      remotes = "${myconfig.env.mail.relay} smtp";
    };
  };
}