10 lines
277 B
Nix
10 lines
277 B
Nix
with import ./lib;
|
|
{ config, pkgs, ... }: {
|
|
environment.systemPackages = [
|
|
pkgs.eximlog
|
|
];
|
|
krebs.exim-retiolum.enable = true;
|
|
krebs.exim-retiolum.rspamd.enable = config.krebs.build.host.name == "nomic";
|
|
tv.iptables.input-retiolum-accept-tcp = singleton "smtp";
|
|
}
|