dotfiles/hosts/thinkpad/configs/firewall.nix

13 lines
143 B
Nix

{ pkgs, ... }:
{
networking.firewall = {
enable = true;
allowedUDPPorts = [
3224
];
allowedTCPPorts = [
];
};
}