16 lines
236 B
Nix
16 lines
236 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./postfix.nix
|
|
./dkim.nix
|
|
./dovecot.nix
|
|
./roundcube.nix
|
|
];
|
|
|
|
security.acme.certs."${config.networking.domain}".reloadServices = [
|
|
"nginx"
|
|
"dovecot2"
|
|
"postfix"
|
|
];
|
|
}
|