From 02fd938fb7471116c13a30caf30df4039ea93b87 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Thu, 10 Aug 2023 23:16:19 -0700 Subject: [PATCH] nixos/conduit: disable update checks by default --- nixos/modules/services/matrix/conduit.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nixos/modules/services/matrix/conduit.nix b/nixos/modules/services/matrix/conduit.nix index 16c4f571da94..76af7ba22857 100644 --- a/nixos/modules/services/matrix/conduit.nix +++ b/nixos/modules/services/matrix/conduit.nix @@ -94,6 +94,16 @@ in instance will require manual migration of data. ''; }; + global.allow_check_for_updates = mkOption { + type = types.bool; + default = false; + description = lib.mdDoc '' + Whether to allow Conduit to automatically contact + hourly to check for important Conduit news. + + Disabled by default because nixpkgs handles updates. + ''; + }; }; }; default = {};