my-nixos-config/home-manager/modules/bash.nix
2025-11-11 16:09:55 +01:00

14 lines
440 B
Nix

{ config, pkgs, ...}: {
# This is to launch fish interactively, to avoid problems
# with fish's non-POSIX compliance
programs.bash = {
enable = true;
initExtra = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
then
shopt -q login_shell && LOGIN_OPTION='--login' || LOGIN_OPTION=""
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
fi
'';
};
}