mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
parent
cb1ed0d2f3
commit
e8358125d9
1 changed files with 6 additions and 1 deletions
|
@ -343,7 +343,12 @@ in {
|
||||||
# if we haven't sourced the general config, do it
|
# if we haven't sourced the general config, do it
|
||||||
if not set -q __fish_general_config_sourced
|
if not set -q __fish_general_config_sourced
|
||||||
|
|
||||||
set -p fish_function_path ${pkgs.fish-foreign-env}/share/fish-foreign-env/functions
|
set --prepend fish_function_path ${
|
||||||
|
if pkgs ? fishPlugins && pkgs.fishPlugins ? foreign-env then
|
||||||
|
"${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d"
|
||||||
|
else
|
||||||
|
"${pkgs.fish-foreign-env}/share/fish-foreign-env/functions"
|
||||||
|
}
|
||||||
fenv source ${config.home.profileDirectory}/etc/profile.d/hm-session-vars.sh > /dev/null
|
fenv source ${config.home.profileDirectory}/etc/profile.d/hm-session-vars.sh > /dev/null
|
||||||
set -e fish_function_path[1]
|
set -e fish_function_path[1]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue