mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-07 01:07:00 +00:00
Standardize all 'programs.<PROGRAM>.enable<SHELL>Integration' options with the following new functions: - lib.hm.shell.mkBashIntegrationOption - lib.hm.shell.mkFishIntegrationOption - lib.hm.shell.mkIonIntegrationOption - lib.hm.shell.mkNushellIntegrationOption - lib.hm.shell.mkZshIntegrationOption These functions should default to their corresponding global option: - home.shell.enableBashIntegration - home.shell.enableFishIntegration - home.shell.enableIonIntegration - home.shell.enableNushellIntegration - home.shell.enableZshIntegration All these global options default to the 'home.shell.enableShellIntegration' value. This hierarchy standardizes the shell integration and increases end-user flexibility. BREAKING CHANGE: The following inconsistent default values change from 'false' to 'true': - programs.zellij.enableBashIntegration - programs.zellij.enableFishIntegration - programs.zellij.enableZshIntegration Link: https://github.com/nix-community/home-manager/pull/6358 Co-authored-by: Robert Helgesson <robert@rycee.net>
77 lines
1.9 KiB
Nix
77 lines
1.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.zoxide;
|
|
|
|
cfgOptions = concatStringsSep " " cfg.options;
|
|
|
|
in {
|
|
meta.maintainers = [ ];
|
|
|
|
options.programs.zoxide = {
|
|
enable = mkEnableOption "zoxide";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.zoxide;
|
|
defaultText = literalExpression "pkgs.zoxide";
|
|
description = ''
|
|
Zoxide package to install.
|
|
'';
|
|
};
|
|
|
|
options = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [ "--no-cmd" ];
|
|
description = ''
|
|
List of options to pass to zoxide init.
|
|
'';
|
|
};
|
|
|
|
enableBashIntegration =
|
|
lib.hm.shell.mkBashIntegrationOption { inherit config; };
|
|
|
|
enableFishIntegration =
|
|
lib.hm.shell.mkFishIntegrationOption { inherit config; };
|
|
|
|
enableNushellIntegration =
|
|
lib.hm.shell.mkNushellIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration =
|
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ cfg.package ];
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration (mkOrder 150 ''
|
|
eval "$(${cfg.package}/bin/zoxide init bash ${cfgOptions})"
|
|
'');
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
|
eval "$(${cfg.package}/bin/zoxide init zsh ${cfgOptions})"
|
|
'';
|
|
|
|
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
|
|
${cfg.package}/bin/zoxide init fish ${cfgOptions} | source
|
|
'';
|
|
|
|
programs.nushell = mkIf cfg.enableNushellIntegration {
|
|
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
|
|
'';
|
|
extraConfig = ''
|
|
source ${config.xdg.cacheHome}/zoxide/init.nu
|
|
'';
|
|
};
|
|
};
|
|
}
|