From 6230ff7dd8ef1b2489befbd30493cc77c3e40420 Mon Sep 17 00:00:00 2001 From: talyz Date: Sun, 24 Jan 2021 13:41:37 +0100 Subject: [PATCH] nixos/fish: Fix foreign-env function path --- nixos/modules/programs/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix index d3f7d3eb1af..392f06eb933 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] '';