diff --git a/modules/programs/mcfly.nix b/modules/programs/mcfly.nix index 1206f9da5..7f7303916 100644 --- a/modules/programs/mcfly.nix +++ b/modules/programs/mcfly.nix @@ -27,6 +27,14 @@ in { ''; }; + enableFuzzySearch = mkOption { + default = false; + type = types.bool; + description = '' + Whether to enable fuzzy searching. + ''; + }; + enableBashIntegration = mkOption { default = true; type = types.bool; @@ -75,5 +83,7 @@ in { } (mkIf cfg.enableLightTheme { home.sessionVariables.MCFLY_LIGHT = "TRUE"; }) + + (mkIf cfg.enableFuzzySearch { home.sessionVariables.MCFLY_FUZZY = "TRUE"; }) ]); }