mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
36 lines
897 B
Nix
36 lines
897 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.hstr;
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.hm.maintainers.Dines97 ];
|
|
|
|
options.programs.hstr = {
|
|
enable = lib.mkEnableOption ''
|
|
Bash And Zsh shell history suggest box - easily view, navigate, search and
|
|
manage your command history'';
|
|
|
|
package = lib.mkPackageOption pkgs "hstr" { };
|
|
|
|
enableBashIntegration = lib.hm.shell.mkBashIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration = lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
programs.bash.initExtra = lib.mkIf cfg.enableBashIntegration ''
|
|
eval "$(${cfg.package}/bin/hstr --show-configuration)"
|
|
'';
|
|
|
|
programs.zsh.initContent = lib.mkIf cfg.enableZshIntegration ''
|
|
eval "$(${cfg.package}/bin/hstr --show-zsh-configuration)"
|
|
'';
|
|
};
|
|
}
|