blob: 1e42c6f41d48fa6c68d1963983fea2dddeaa4897 [file] [log] [blame]
Skyler Grey4bf2de52024-07-29 17:55:05 +00001{ lib, ... }: {
2 options.clicks.defaults.enable = lib.mkOption {
3 type = lib.types.bool;
4 example = true;
5 default = false;
6 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";
7 };
8}