at 16.09-beta 210 B view raw
1{ lib, ... }: 2 3{ 4 options = { 5 enable = lib.mkOption { 6 default = false; 7 example = true; 8 type = lib.types.bool; 9 description = '' 10 Some descriptive text 11 ''; 12 }; 13 }; 14}