Files
infra/nixos/modules/firewall-mini-pc.nix
T
2026-05-29 16:46:23 +03:00

27 lines
291 B
Nix

{
networking.firewall = {
enable = true;
allowedTCPPorts = [
22
53
80
443
784
853
3001
3015
4438
5443
8088
10380
];
allowedUDPPorts = [
53
443
784
9993
5443
];
};
}