2020-08-22 11:20:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.mcfly;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
|
2022-06-06 14:15:37 +02:00
|
|
|
imports = [
|
|
|
|
(mkChangedOptionModule # \
|
|
|
|
[ "programs" "mcfly" "enableFuzzySearch" ] # \
|
|
|
|
[ "programs" "mcfly" "fuzzySearchFactor" ] # \
|
|
|
|
(config:
|
|
|
|
let
|
|
|
|
value =
|
|
|
|
getAttrFromPath [ "programs" "mcfly" "enableFuzzySearch" ] config;
|
|
|
|
in if value then 2 else 0))
|
|
|
|
];
|
|
|
|
|
2020-08-22 11:20:00 +02:00
|
|
|
options.programs.mcfly = {
|
|
|
|
enable = mkEnableOption "mcfly";
|
|
|
|
|
|
|
|
keyScheme = mkOption {
|
|
|
|
type = types.enum [ "emacs" "vim" ];
|
|
|
|
default = "emacs";
|
|
|
|
description = ''
|
|
|
|
Key scheme to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableLightTheme = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable light mode theme.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-06-06 14:15:37 +02:00
|
|
|
fuzzySearchFactor = mkOption {
|
|
|
|
default = 0;
|
|
|
|
type = types.ints.unsigned;
|
2020-12-16 05:20:00 +01:00
|
|
|
description = ''
|
|
|
|
Whether to enable fuzzy searching.
|
2022-06-06 14:15:37 +02:00
|
|
|
0 is off; higher numbers weight toward shorter matches.
|
|
|
|
Values in the 2-5 range get good results so far.
|
2020-12-16 05:20:00 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-08-22 11:20:00 +02:00
|
|
|
enableBashIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Bash integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Zsh integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
enableFishIntegration = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable Fish integration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{
|
|
|
|
home.packages = [ pkgs.mcfly ];
|
|
|
|
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
2021-08-30 05:42:54 +02:00
|
|
|
eval "$(${pkgs.mcfly}/bin/mcfly init bash)"
|
2020-08-22 11:20:00 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
2021-08-30 05:42:54 +02:00
|
|
|
eval "$(${pkgs.mcfly}/bin/mcfly init zsh)"
|
2020-08-22 11:20:00 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
|
2021-08-30 05:42:54 +02:00
|
|
|
${pkgs.mcfly}/bin/mcfly init fish | source
|
2020-08-22 11:20:00 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
home.sessionVariables.MCFLY_KEY_SCHEME = cfg.keyScheme;
|
|
|
|
}
|
|
|
|
|
|
|
|
(mkIf cfg.enableLightTheme { home.sessionVariables.MCFLY_LIGHT = "TRUE"; })
|
2020-12-16 05:20:00 +01:00
|
|
|
|
2022-06-06 14:15:37 +02:00
|
|
|
(mkIf (cfg.fuzzySearchFactor > 0) {
|
|
|
|
home.sessionVariables.MCFLY_FUZZY = cfg.fuzzySearchFactor;
|
|
|
|
})
|
2020-08-22 11:20:00 +02:00
|
|
|
]);
|
|
|
|
}
|