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>
87 lines
2.1 KiB
Nix
87 lines
2.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.z-lua;
|
|
|
|
aliases = {
|
|
zz = "z -c"; # restrict matches to subdirs of $PWD
|
|
zi = "z -i"; # cd with interactive selection
|
|
zf = "z -I"; # use fzf to select in multiple matches
|
|
zb = "z -b"; # quickly cd to the parent directory
|
|
zh = "z -I -t ."; # fzf
|
|
};
|
|
|
|
in {
|
|
meta.maintainers = [ ];
|
|
|
|
options.programs.z-lua = {
|
|
enable = mkEnableOption "z.lua";
|
|
|
|
options = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [ "enhanced" "once" "fzf" ];
|
|
description = ''
|
|
List of options to pass to z.lua.
|
|
'';
|
|
};
|
|
|
|
enableBashIntegration =
|
|
lib.hm.shell.mkBashIntegrationOption { inherit config; };
|
|
|
|
enableFishIntegration =
|
|
lib.hm.shell.mkFishIntegrationOption { inherit config; };
|
|
|
|
enableZshIntegration =
|
|
lib.hm.shell.mkZshIntegrationOption { inherit config; };
|
|
|
|
enableAliases = mkOption {
|
|
default = false;
|
|
type = types.bool;
|
|
description = ''
|
|
Whether to enable recommended z.lua aliases.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = [ pkgs.z-lua ];
|
|
|
|
programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
|
|
eval "$(${pkgs.z-lua}/bin/z --init bash ${
|
|
concatStringsSep " " cfg.options
|
|
})"
|
|
'';
|
|
|
|
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
|
|
eval "$(${pkgs.z-lua}/bin/z --init zsh ${
|
|
concatStringsSep " " cfg.options
|
|
})"
|
|
'';
|
|
|
|
programs.bash.shellAliases = mkIf cfg.enableAliases aliases;
|
|
|
|
programs.zsh.shellAliases = mkIf cfg.enableAliases aliases;
|
|
|
|
programs.fish = mkMerge [
|
|
{
|
|
shellInit = mkIf cfg.enableFishIntegration ''
|
|
source (${pkgs.z-lua}/bin/z --init fish ${
|
|
concatStringsSep " " cfg.options
|
|
} | psub)
|
|
'';
|
|
}
|
|
|
|
(mkIf (!config.programs.fish.preferAbbrs) {
|
|
shellAliases = mkIf cfg.enableAliases aliases;
|
|
})
|
|
|
|
(mkIf config.programs.fish.preferAbbrs {
|
|
shellAbbrs = mkIf cfg.enableAliases aliases;
|
|
})
|
|
];
|
|
};
|
|
}
|