From db6d78ddab7864611d28d7e4f565271aaa9ba744 Mon Sep 17 00:00:00 2001
From: DerGrumpf
Date: Tue, 25 Mar 2025 00:50:35 +0100
Subject: [PATCH] Changed: Fish shell parameters
---
users/phil/nixos.nix | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/users/phil/nixos.nix b/users/phil/nixos.nix
index 1ea512c..5fcf8e6 100644
--- a/users/phil/nixos.nix
+++ b/users/phil/nixos.nix
@@ -15,4 +15,22 @@
shell = pkgs.fish;
};
+
+ programs.bash = {
+ 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
+ '';
+ };
+
+ programs.fish = {
+ enable = true;
+ shellAbbrs = {
+ ls = "eza";
+ };
+ interactiveShellInit = '''';
+ };
}