nixos/factorio: Don't open firewall ports by default

This commit is contained in:
Stijn DW
2020-11-24 23:14:57 +01:00
committed by erictapen
parent d93434458b
commit 3d3bcc5cc9
+1 -1
View File
@@ -53,7 +53,7 @@ in
}; };
openFirewall = mkOption { openFirewall = mkOption {
type = types.bool; type = types.bool;
default = true; default = false;
description = '' description = ''
Whether to automatically open the specified UDP port in the firewall. Whether to automatically open the specified UDP port in the firewall.
''; '';