{ 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"; | |
}; | |
} |