mirror of
https://github.com/RGBCube/ncc
synced 2025-09-13 01:27:56 +00:00
16 lines
310 B
Nix
16 lines
310 B
Nix
{ config, self, ... }: let
|
|
inherit (config.networking) domain;
|
|
|
|
fqdn = "mail2.${domain}";
|
|
in {
|
|
imports = [(self + /modules/mail)];
|
|
|
|
mailserver = {
|
|
inherit fqdn;
|
|
|
|
# Not [ domain ] because this is a backup mailserver. contact@mail2.rgbcu.be.
|
|
domains = [ fqdn ];
|
|
|
|
stateVersion = 3;
|
|
};
|
|
}
|