16 lines
408 B
Nix
16 lines
408 B
Nix
{ lib, custom-utils, ... }:
|
|
|
|
custom-utils.validatePortAttrset {
|
|
jellyfin.tcp = 8096;
|
|
matrix-synapse.tcp = 8008;
|
|
navidrome.tcp = 4533;
|
|
nginx-http.tcp = 80;
|
|
nginx-https.tcp = 443;
|
|
postfix-relay.tcp = 25;
|
|
postfix-submission.tcp = [ 465 587 ];
|
|
qbittorrent-torrent.tcp = 59832;
|
|
qbittorrent-webui.tcp = 8099;
|
|
radicale.tcp = 5232;
|
|
unifi.tcp = 8443;
|
|
wireguard-public-ip-tunnel.udp = 51000;
|
|
}
|