This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/lime/services/firewall.nix
2024-05-29 17:15:20 +02:00

32 lines
357 B
Nix

{ pkgs, ... }: {
networking.firewall = {
enable = false;
allowedTCPPorts = [
25565
22
222
4827
2222
9001
1141
# matrix
8008
];
allowedUDPPorts = [
25565
22
222
2222
4827
1141
5121 # olama
9001
# matrix
8008
];
};
}