base/postfix: remove, base:nullmailer: init

This commit is contained in:
h7x4
2026-07-21 20:11:28 +09:00
parent 207bd1975e
commit 1c4e8e7662
4 changed files with 23 additions and 31 deletions
+7 -8
View File
@@ -1,14 +1,13 @@
{ config, lib, pkgs, ... }:
{
services.postfix.enable = lib.mkForce false;
assertions = [{
assertion = config.services.nullmailer.enable;
message = ''
Expected nullmailer to be enabled for temmie userweb.
services.nullmailer = {
enable = true;
config = {
me = config.networking.fqdn;
remotes = "mail.pvv.ntnu.no smtp --port=25";
};
};
If you change the default sendmail implementation, please make sure that temmie userweb works correctly!
'';
}];
services.bro = {
enable = true;