From f1ae65d1d64e398a841391ee88193098acc04988 Mon Sep 17 00:00:00 2001 From: Abreu <87032834+de-abreu@users.noreply.github.com> Date: Mon, 12 Jan 2026 18:10:02 +0000 Subject: [PATCH] fix: change hyde-shell execution to use bashInteractive --- hydenix/modules/hm/hyde.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydenix/modules/hm/hyde.nix b/hydenix/modules/hm/hyde.nix index aff83b54..6b42339f 100644 --- a/hydenix/modules/hm/hyde.nix +++ b/hydenix/modules/hm/hyde.nix @@ -86,7 +86,7 @@ in ".local/bin/hyde-shell" = { source = pkgs.writeShellScript "hyde-shell" '' export PYTHONPATH="${pkgs.python-pyamdgpuinfo}/${pkgs.python3.sitePackages}:$PYTHONPATH" - exec "${pkgs.hyde}/Configs/.local/bin/hyde-shell" "$@" + exec ${pkgs.bashInteractive}/bin/bash "${pkgs.hyde}/Configs/.local/bin/hyde-shell" "$@" ''; executable = true; };