1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 01:27:56 +00:00
ncc/hosts/nine/mail.nix
2025-06-23 01:46:16 +03:00

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;
};
}