diff --git a/modules/home-environment.nix b/modules/home-environment.nix index 694a2aa02..f665833f1 100644 --- a/modules/home-environment.nix +++ b/modules/home-environment.nix @@ -375,6 +375,11 @@ in set -eu set -o pipefail + # This code explicitly requires GNU Core Utilities and Bash. + # We therefore need to ensure they are prioritized over any + # other similarly named tools on the system. + export PATH="${pkgs.coreutils}/bin:${pkgs.bash}/bin:$PATH" + . ${./lib-bash/color-echo.sh} ${builtins.readFile ./lib-bash/activation-init.sh}