Files
pvv-nixos-config/base/services/nullmailer.nix
T
oysteikt 1c4e8e7662
Eval nix flake / evals (pull_request) Successful in 7m30s
Build topology graph / evals (push) Successful in 2m14s
Eval nix flake / evals (push) Successful in 9m11s
base/postfix: remove, base:nullmailer: init
2026-07-22 21:12:00 +09:00

16 lines
327 B
Nix

{ config, lib, ... }:
{
services.nullmailer = {
enable = true;
config = {
adminaddr = "root@pvv.ntnu.no";
defaultdomain = "pvv.ntnu.no";
defaulthost = "pvv.ntnu.no";
me = lib.mkDefault config.networking.fqdn;
remotes = lib.mkDefault "smtp.pvv.ntnu.no smtp port=465 tls";
};
};
}