summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authortalyz <kim.lindberger@gmail.com>2021-01-24 13:41:37 +0100
committertalyz <kim.lindberger@gmail.com>2021-01-24 13:41:37 +0100
commit6230ff7dd8ef1b2489befbd30493cc77c3e40420 (patch)
tree0032a5d9425a77280dd507e05a4926c8559d6603 /nixos
parentc2785a405b0ce956fa0ede82963d7951a7ff10f1 (diff)
nixos/fish: Fix foreign-env function path
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/programs/fish.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix
index d3f7d3eb1af5..392f06eb9332 100644
--- a/nixos/modules/programs/fish.nix
+++ b/nixos/modules/programs/fish.nix
@@ -24,7 +24,7 @@ let
"source /etc/fish/${file}.fish"
else
''
- set fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish-foreign-env/functions $fish_function_path
+ set fish_function_path ${pkgs.fishPlugins.foreign-env}/share/fish/vendor_functions.d $fish_function_path
fenv source /etc/fish/foreign-env/${file} > /dev/null
set -e fish_function_path[1]
'';