summary refs log tree commit diff
diff options
context:
space:
mode:
authorSolene Rapenne <solene@perso.pw>2022-12-04 13:50:59 +0100
committerSolene Rapenne <solene@perso.pw>2022-12-05 12:03:09 +0100
commit372a2d211115178be0af566a8621f25041015bde (patch)
treea93b8b7e159f303206faa391f5fe33235807c1bf
parent659803e8794fcb6df44cbe2eceb9abaced8b7a05 (diff)
downloadnixpkgs-372a2d211115178be0af566a8621f25041015bde.tar
nixpkgs-372a2d211115178be0af566a8621f25041015bde.tar.gz
nixpkgs-372a2d211115178be0af566a8621f25041015bde.tar.bz2
nixpkgs-372a2d211115178be0af566a8621f25041015bde.tar.lz
nixpkgs-372a2d211115178be0af566a8621f25041015bde.tar.xz
nixpkgs-372a2d211115178be0af566a8621f25041015bde.tar.zst
nixpkgs-372a2d211115178be0af566a8621f25041015bde.zip
nixos/unifi-video: openFirewall default to false
-rw-r--r--nixos/modules/services/video/unifi-video.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/video/unifi-video.nix b/nixos/modules/services/video/unifi-video.nix
index fcc3cb02a1b..450e92dd9a3 100644
--- a/nixos/modules/services/video/unifi-video.nix
+++ b/nixos/modules/services/video/unifi-video.nix
@@ -148,7 +148,7 @@ in
 
     openFirewall = mkOption {
       type = types.bool;
-      default = true;
+      default = false;
       description = lib.mdDoc ''
         Whether or not to open the required ports on the firewall.
       '';