11 lines
220 B
Nix
11 lines
220 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with config.krebs.lib;
|
||
|
|
||
|
{
|
||
|
krebs.exim-retiolum.enable = true;
|
||
|
krebs.iptables.tables.filter.INPUT.rules = [
|
||
|
{ predicate = "-i retiolum -p tcp --dport smtp"; target = "ACCEPT"; }
|
||
|
];
|
||
|
}
|