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

View File

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