Changed: Terminal bug

This commit is contained in:
DerGrumpf 2025-03-25 01:40:24 +01:00
parent a322ff3ed7
commit 0659912e38
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,7 @@ let
in
{
# Fix underlying System POSIX bugs
programs.bash = {
/* programs.bash = {
interactiveShellInit = ''
if [[ $(${pkgs.procps}/bin/ps --no-header --pid=$PPID --format=comm) != "fish" && -z ''${BASH_EXECUTION_STRING} ]]
then
@ -15,7 +15,7 @@ in
fi
'';
};
*/
programs.fish = {
enable = true;
interactiveShellInit = ''

View File

@ -16,4 +16,6 @@
shell = pkgs.fish;
};
programs.fish.enable = true; # Just because...
}