my-nixos-config/home-manager/modules/bash.nix
2026-01-23 12:04:59 +01:00

15 lines
459 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
'';
};
}