blob: 1e42c6f41d48fa6c68d1963983fea2dddeaa4897 [file] [log] [blame]
{ lib, ... }: {
options.clicks.defaults.enable = lib.mkOption {
type = lib.types.bool;
example = true;
default = false;
description = "Tell Clicks modules that they are allowed to be default-enabled. Clicks modules are designed to be all imported at once, so without this we will assume we're running on someone-else's system and avoid setting anything without being told to";
};
}