blob: a9258d2666d0cf674e3bdc75a064a29d903d0aa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0
{ pkgs, ... }:
{
services.postfix = {
# Disable delivery to local users
localRecipients = [];
# Forward administrative mail to vityaz
postmasterAlias = "postmaster@unfathomable.blue";
};
}
|