From 3d3bcc5cc92541e3a63441a3d39f1176ef92c03b Mon Sep 17 00:00:00 2001 From: Stijn DW Date: Tue, 24 Nov 2020 21:17:34 +0100 Subject: [PATCH] nixos/factorio: Don't open firewall ports by default --- nixos/modules/services/games/factorio.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/games/factorio.nix b/nixos/modules/services/games/factorio.nix index 7962a4c3baf..73099ae3363 100644 --- a/nixos/modules/services/games/factorio.nix +++ b/nixos/modules/services/games/factorio.nix @@ -53,7 +53,7 @@ in }; openFirewall = mkOption { type = types.bool; - default = true; + default = false; description = '' Whether to automatically open the specified UDP port in the firewall. '';