9 lines
159 B
Nix
9 lines
159 B
Nix
|
{ pkgs, ... }: {
|
||
|
networking.firewall = {
|
||
|
#extraCommands = "iptables -I FORWARD default";
|
||
|
allowedUDPPorts = [
|
||
|
34197 #factorio
|
||
|
];
|
||
|
};
|
||
|
}
|