mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-06 17:11:03 +01:00
38 lines
987 B
Nix
38 lines
987 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.programs.autojump;
|
|
package = pkgs.autojump;
|
|
|
|
inherit (lib) mkIf;
|
|
in {
|
|
meta.maintainers = [ lib.maintainers.evanjs ];
|
|
|
|
options.programs.autojump = {
|
|
enable = lib.mkEnableOption "autojump";
|
|
|
|
enableBashIntegration =
|
|
lib.hm.shell.mkBashIntegrationOption { inherit config; };
|
|
|
|
enableFishIntegration =
|
|
lib.hm.shell.mkFishIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration =
|
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ package ];
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration (lib.mkBefore ''
|
|
. ${package}/share/autojump/autojump.bash
|
|
'');
|
|
|
|
programs.zsh.initContent = mkIf cfg.enableZshIntegration ''
|
|
. ${package}/share/autojump/autojump.zsh
|
|
'';
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
|
. ${package}/share/autojump/autojump.fish
|
|
'';
|
|
};
|
|
}
|