about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2024-03-05 03:44:49 +0000
committerGitHub <noreply@github.com>2024-03-05 03:44:49 +0000
commita54c624f477fe47b5d1183f0df4e3ab797b71893 (patch)
tree4a084c6e4a4d9a4a4f97a998e2d1194707377c29 /pkgs/applications
parentdacfe7065a3be4a45cbcf9c9ec9a89937d12dcdc (diff)
parentefba391c8fffcb2ad77d0ff5140ea42f876d5b12 (diff)
Merge pull request #289214 from dotlambda/brave-auto-update
brave: disable automatic updates
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/brave/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/brave/default.nix b/pkgs/applications/networking/browsers/brave/default.nix
index 145dbd1e2ca40..b9fd4c14ad50b 100644
--- a/pkgs/applications/networking/browsers/brave/default.nix
+++ b/pkgs/applications/networking/browsers/brave/default.nix
@@ -87,8 +87,9 @@ let
   enableFeatures = optionals enableVideoAcceleration [ "VaapiVideoDecoder" "VaapiVideoEncoder" ]
     ++ optional enableVulkan "Vulkan";
 
+  disableFeatures = [ "OutdatedBuildDetector" ] # disable automatic updates
     # The feature disable is needed for VAAPI to work correctly: https://github.com/brave/brave-browser/issues/20935
-  disableFeatures = optional enableVideoAcceleration "UseChromeOSDirectVideoDecoder";
+    ++ optionals enableVideoAcceleration  [ "UseChromeOSDirectVideoDecoder" ];
 in
 
 stdenv.mkDerivation rec {