1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 11:07:44 +00:00
ncc/hosts/disk/mail.nix
2025-06-23 01:46:16 +03:00

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