From 1600fd2885695126d64aac7bb166ac83eeb34599 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Fri, 24 Oct 2025 11:46:08 +1000 Subject: [PATCH] fix bashistrans (myputer) --- hosts/myputer/default.nix | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/hosts/myputer/default.nix b/hosts/myputer/default.nix index 50d3bf6..244f5eb 100755 --- a/hosts/myputer/default.nix +++ b/hosts/myputer/default.nix @@ -403,21 +403,6 @@ in { }; }; - # I want to use fish as my login shell but it always goes terrible - # cause it isn't POSIX compliant, so instead Bash is my login and - # will just exec fish (^-^) - bash = { - completion.enable = true; - - interactiveShellInit = '' - 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 - ''; - }; - # Thunar also (optionally) requires: `services.tumbler` & `services.gvfs` thunar = { enable = true;