mirror of
https://github.com/RGBCube/ncc
synced 2025-07-29 11:07:44 +00:00
13 lines
203 B
Nix
13 lines
203 B
Nix
{ config, self, ... }: let
|
|
inherit (config.networking) domain;
|
|
|
|
fqdn = "mail1.${domain}";
|
|
in {
|
|
imports = [(self + /modules/mail)];
|
|
|
|
mailserver = {
|
|
inherit fqdn;
|
|
|
|
stateVersion = 3;
|
|
};
|
|
}
|