1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-24 09:06:17 +00:00

zoxide: move to bottom of zsh content

Follow up to https://github.com/nix-community/home-manager/pull/6572,
possible to fix now with
https://github.com/nix-community/home-manager/pull/6479
This commit is contained in:
Austin Horstman 2025-03-13 09:22:18 -05:00
parent 6576167e6b
commit d30c1d30bf

View file

@ -52,9 +52,9 @@ in {
eval "$(${cfg.package}/bin/zoxide init bash ${cfgOptions})"
'');
programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
programs.zsh.initContent = mkIf cfg.enableZshIntegration (mkOrder 2000 ''
eval "$(${cfg.package}/bin/zoxide init zsh ${cfgOptions})"
'';
'');
programs.fish.interactiveShellInit = mkIf cfg.enableFishIntegration ''
${cfg.package}/bin/zoxide init fish ${cfgOptions} | source