10 lines
210 B
Nix
10 lines
210 B
Nix
{ custom-utils, ... }:
|
|
|
|
{
|
|
config.networking.ports = custom-utils.validatePortAttrset {
|
|
nginx-http.tcp = 80;
|
|
nginx-https.tcp = 443;
|
|
postfix-relay.tcp = 25;
|
|
postfix-submission.tcp = 465;
|
|
};
|
|
}
|