aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authorStijn DW <stekke@airmail.cc>2020-11-24 21:17:34 +0100
committererictapen <justin.humm@posteo.de>2020-11-24 23:14:57 +0100
commit3d3bcc5cc92541e3a63441a3d39f1176ef92c03b (patch)
treed65c92c689bd53f1193abb780ea3ba39c6b93e9d /nixos
parentd93434458bc85a6ceed303f6b0c58fb3f99d6e29 (diff)
nixos/factorio: Don't open firewall ports by default
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/games/factorio.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/games/factorio.nix b/nixos/modules/services/games/factorio.nix
index 7962a4c3baf9..73099ae33634 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.
'';