nixos-config/2configs/exim-retiolum.nix

12 lines
201 B
Nix
Raw Normal View History

2015-08-17 23:24:37 +02:00
{ config, lib, pkgs, ... }:
2016-02-14 16:43:44 +01:00
with config.krebs.lib;
2015-08-17 23:24:37 +02:00
{
networking.firewall.allowedTCPPorts = [ 25 ];
2015-08-17 23:24:37 +02:00
krebs.exim-retiolum.enable = true;
environment.systemPackages = with pkgs; [
msmtp
];
}