Skyler Grey | 4bf2de5 | 2024-07-29 17:55:05 +0000 | [diff] [blame^] | 1 | { 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 | } |