diff --git a/modules/apps/kate/default.nix b/modules/apps/kate/default.nix index 5e6be9b1..064fed92 100644 --- a/modules/apps/kate/default.nix +++ b/modules/apps/kate/default.nix @@ -450,23 +450,31 @@ in example = "<>(){}[]'\"\`*_~"; description = "This options determines which characters kate will treat as brackets."; }; - automaticallyAddClosing = lib.mkEnableOption '' - When enabled, a closing bracket is automatically inserted upon typing the opening. - ''; - highlightRangeBetween = lib.mkEnableOption '' - This option enables automatch highlighting of the lines between an opening and a - closing bracket when the cursor is adjacent to either. - ''; - highlightMatching = lib.mkEnableOption '' - When enabled, and the cursor is adjacent to a closing bracket, and the corresponding - closing bracket is outside of the currently visible area, then the line of the opening - bracket and the line directly after will be shown in a small, floating window - at the top of the text area. - ''; - flashMatching = lib.mkEnableOption '' - When this option is enabled, then a bracket will quickly flash whenever the cursor - moves adjacent to the corresponding bracket. - ''; + automaticallyAddClosing = lib.mkEnableOption "" // { + description = '' + When enabled, a closing bracket is automatically inserted upon typing the opening. + ''; + }; + highlightRangeBetween = lib.mkEnableOption "" // { + description = '' + This option enables automatch highlighting of the lines between an opening and a + closing bracket when the cursor is adjacent to either. + ''; + }; + highlightMatching = lib.mkEnableOption "" // { + description = '' + When enabled, and the cursor is adjacent to a closing bracket, and the corresponding + closing bracket is outside of the currently visible area, then the line of the opening + bracket and the line directly after will be shown in a small, floating window + at the top of the text area. + ''; + }; + flashMatching = lib.mkEnableOption "" // { + description = '' + When this option is enabled, then a bracket will quickly flash whenever the cursor + moves adjacent to the corresponding bracket. + ''; + }; }; # ================================== diff --git a/modules/apps/okular.nix b/modules/apps/okular.nix index 5da330bf..b5520f4a 100644 --- a/modules/apps/okular.nix +++ b/modules/apps/okular.nix @@ -140,7 +140,9 @@ with lib.types; }; changeColors = { - enable = lib.mkEnableOption "Whether to change the colors of the documents."; + enable = lib.mkEnableOption "" // { + description = "Whether to change the colors of the documents."; + }; mode = lib.mkOption { description = "Mode used to change the colors."; default = null; diff --git a/modules/files.nix b/modules/files.nix index 5395875a..77534fe4 100644 --- a/modules/files.nix +++ b/modules/files.nix @@ -143,7 +143,9 @@ in Configuration files which explicitly should not be deleted on each generation, if `overrideConfig` is enabled. ''; }; - immutableByDefault = lib.mkEnableOption "Make keys written by plasma-manager immutable by default."; + immutableByDefault = lib.mkEnableOption "" // { + description = "Whether to make keys written by plasma-manager immutable by default."; + }; }; imports = [