Quick fix

This commit is contained in:
Heitor Augusto 2024-09-02 22:26:45 -03:00 committed by GitHub
parent 3edf2a603d
commit c0f4302649
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,13 +8,13 @@ in {
example = "center";
description = "Position of KRunner on screen.";
};
activateWhenTypingOnDesktop = mkOption {
activateWhenTypingOnDesktop = lib.mkOption {
type = with lib.types; nullOr bool;
default = null;
example = true;
description = "Activate KRunner when typing on the desktop.";
};
historyBehavior = mkOption {
historyBehavior = lib.mkOption {
type = with lib.types;
nullOr (enum [ "disabled" "enableSuggestions" "enableAutoComplete" ]);
default = null;