From 0659912e3866fc491f168c169b372b1f6142d841 Mon Sep 17 00:00:00 2001 From: DerGrumpf Date: Tue, 25 Mar 2025 01:40:24 +0100 Subject: [PATCH] Changed: Terminal bug --- home/shell/fish.nix | 4 ++-- users/phil/nixos.nix | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home/shell/fish.nix b/home/shell/fish.nix index cdfaee9..46f7887 100644 --- a/home/shell/fish.nix +++ b/home/shell/fish.nix @@ -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 = '' diff --git a/users/phil/nixos.nix b/users/phil/nixos.nix index c231324..5482383 100644 --- a/users/phil/nixos.nix +++ b/users/phil/nixos.nix @@ -16,4 +16,6 @@ shell = pkgs.fish; }; + programs.fish.enable = true; # Just because... + }