mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2026-05-12 17:41:15 +02:00
13 lines
232 B
Nix
13 lines
232 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|