8 lines
188 B
Nix
8 lines
188 B
Nix
{ lib, custom-utils, ... }:
|
|
|
|
custom-utils.validatePortAttrset {
|
|
nginx-http.tcp = 80;
|
|
nginx-https.tcp = 443;
|
|
ports.postfix-relay.tcp = 25;
|
|
ports.postfix-submission.tcp = [ 465 ];
|
|
}
|