fish: fix regression due to changes in Nixpkgs

Fixes #1701
Fixes #1702
wip/yesman
meck 3 years ago committed by Robert Helgesson
parent cb1ed0d2f3
commit e8358125d9
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
  1. 7
      modules/programs/fish.nix

@ -343,7 +343,12 @@ in {
# if we haven't sourced the general config, do it
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
set -e fish_function_path[1]

Loading…
Cancel
Save