dotfiles/nix/configs/firewall.nix
2024-07-31 07:17:52 +02:00

9 lines
159 B
Nix

{ pkgs, ... }: {
networking.firewall = {
#extraCommands = "iptables -I FORWARD default";
allowedUDPPorts = [
34197 #factorio
];
};
}