blob: f15a0cf7432d32fb9a94e842b5abadff4a5e3126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, lib, pkgs, ... }:
with import <stockholm/lib>;
{
networking.firewall.allowedTCPPorts = [ 25 ];
krebs.exim-retiolum.enable = true;
environment.systemPackages = with pkgs; [
msmtp
];
}
|