12 lines
207 B
Nix
12 lines
207 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with import <stockholm/lib>;
|
|
{
|
|
networking.firewall.allowedTCPPorts = [ 25 ];
|
|
|
|
krebs.exim-retiolum.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
msmtp
|
|
];
|
|
}
|