nixos/conduit: disable update checks by default

This commit is contained in:
Charles Hall 2023-08-10 23:16:19 -07:00
parent f8e105c513
commit 02fd938fb7
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF

View file

@ -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
<https://conduit.rs> hourly to check for important Conduit news.
Disabled by default because nixpkgs handles updates.
'';
};
};
};
default = {};