1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-31 04:04:32 +00:00
home-manager/modules/programs/zoxide.nix

75 lines
2 KiB
Nix
Raw Normal View History

2020-05-25 04:20:00 -05:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.zoxide;
2025-03-13 09:25:14 -05:00
cfgOptions = lib.concatStringsSep " " cfg.options;
2020-05-25 04:20:00 -05:00
in {
meta.maintainers = [ ];
2020-05-25 04:20:00 -05:00
options.programs.zoxide = {
2025-03-13 09:25:14 -05:00
enable = lib.mkEnableOption "zoxide";
2020-05-25 04:20:00 -05:00
2025-03-13 09:25:14 -05:00
package = lib.mkOption {
type = lib.types.package;
2020-05-25 04:20:00 -05:00
default = pkgs.zoxide;
2025-03-13 09:25:14 -05:00
defaultText = lib.literalExpression "pkgs.zoxide";
2020-05-25 04:20:00 -05:00
description = ''
Zoxide package to install.
'';
};
2025-03-13 09:25:14 -05:00
options = lib.mkOption {
type = lib.types.listOf lib.types.str;
2020-05-25 04:20:00 -05:00
default = [ ];
example = [ "--no-cmd" ];
2020-05-25 04:20:00 -05:00
description = ''
List of options to pass to zoxide init.
2020-05-25 04:20:00 -05:00
'';
};
enableBashIntegration =
lib.hm.shell.mkBashIntegrationOption { inherit config; };
2020-05-25 04:20:00 -05:00
enableFishIntegration =
lib.hm.shell.mkFishIntegrationOption { inherit config; };
2020-05-25 04:20:00 -05:00
enableNushellIntegration =
lib.hm.shell.mkNushellIntegrationOption { inherit config; };
2023-03-17 14:21:53 -04:00
enableZshIntegration =
lib.hm.shell.mkZshIntegrationOption { inherit config; };
2020-05-25 04:20:00 -05:00
};
2025-03-13 09:25:14 -05:00
config = lib.mkIf cfg.enable {
2020-05-25 04:20:00 -05:00
home.packages = [ cfg.package ];
2025-03-13 09:25:14 -05:00
programs.bash.initExtra = lib.mkIf cfg.enableBashIntegration
(lib.mkOrder 2000 ''
eval "$(${cfg.package}/bin/zoxide init bash ${cfgOptions})"
'');
2020-05-25 04:20:00 -05:00
2025-03-13 09:25:14 -05:00
programs.zsh.initContent = lib.mkIf cfg.enableZshIntegration
(lib.mkOrder 2000 ''
eval "$(${cfg.package}/bin/zoxide init zsh ${cfgOptions})"
'');
2020-05-25 04:20:00 -05:00
2025-03-13 09:25:14 -05:00
programs.fish.interactiveShellInit = lib.mkIf cfg.enableFishIntegration ''
2023-03-17 14:21:53 -04:00
${cfg.package}/bin/zoxide init fish ${cfgOptions} | source
2020-05-25 04:20:00 -05:00
'';
2023-03-17 14:21:53 -04:00
2025-03-13 09:25:14 -05:00
programs.nushell = lib.mkIf cfg.enableNushellIntegration {
2023-03-17 14:21:53 -04:00
extraEnv = ''
let zoxide_cache = "${config.xdg.cacheHome}/zoxide"
if not ($zoxide_cache | path exists) {
mkdir $zoxide_cache
}
${cfg.package}/bin/zoxide init nushell ${cfgOptions} |
save --force ${config.xdg.cacheHome}/zoxide/init.nu
2023-03-17 14:21:53 -04:00
'';
extraConfig = ''
source ${config.xdg.cacheHome}/zoxide/init.nu
'';
};
2020-05-25 04:20:00 -05:00
};
}