neorg: adding descriptions

This commit is contained in:
Soliprem 2024-10-15 12:38:37 +02:00
parent 67a2632958
commit ec26adc7dc

View file

@ -17,14 +17,23 @@ in {
load = { load = {
"core.defaults" = mkOption { "core.defaults" = mkOption {
default = {}; default = {};
description = ''
all of the most important modules that any user would want to have a "just works" experience
'';
type = submodule { type = submodule {
options = { options = {
enable = mkEnableOption "wrapper to interface with several different completion engines."; enable = mkEnableOption ''
all of the most important modules that any user would want to have a "just works" experience
'';
config = { config = {
disable = mkOption { disable = mkOption {
description = ''
list of modules from to be disabled from core.defaults
'';
type = listOf str; type = listOf str;
default = []; default = [];
example = ["core.autocommands" "core.itero"];
}; };
}; };
}; };