2020-08-22 11:20:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.mcfly;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ maintainers.marsam ];
|
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-12-16 05:20:00 +01:00
|
|
|
enableFuzzySearch = mkOption {
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether to enable fuzzy searching.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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 ''
|
|
|
|
source "${pkgs.mcfly}/share/mcfly/mcfly.bash"
|
|
|
|
'';
|
|
|
|
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
|
|
|
source "${pkgs.mcfly}/share/mcfly/mcfly.zsh"
|
|
|
|
'';
|
|
|
|
|
|
|
|
programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
|
|
|
|
source "${pkgs.mcfly}/share/mcfly/mcfly.fish"
|
2020-09-05 20:59:27 +02:00
|
|
|
if status is-interactive
|
|
|
|
mcfly_key_bindings
|
|
|
|
end
|
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
|
|
|
|
|
|
|
(mkIf cfg.enableFuzzySearch { home.sessionVariables.MCFLY_FUZZY = "TRUE"; })
|
2020-08-22 11:20:00 +02:00
|
|
|
]);
|
|
|
|
}
|