temmie/userweb: switch from postfix to nullmailer

This commit is contained in:
h7x4
2026-05-11 13:38:11 +09:00
parent 258c5a7b25
commit 5e50b617fb
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
{ config, lib, ... }:
{
services.postfix.enable = lib.mkForce false;
services.nullmailer = {
enable = true;
config = {
me = config.networking.fqdn;
remotes = "mail.pvv.ntnu.no smtp --port=25";
};
};
}