From 35eda93886ce8c5ef09f435e0baedd90565893a6 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Mon, 2 Mar 2026 15:00:56 +0000 Subject: [PATCH] himalaya: add bash to wrapper runtimeInputs for passwordCommand shell execution --- profiles/himalaya.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/himalaya.nix b/profiles/himalaya.nix index 9127069..700c016 100644 --- a/profiles/himalaya.nix +++ b/profiles/himalaya.nix @@ -4,7 +4,7 @@ package = pkgs.writeShellApplication { name = "himalaya"; - runtimeInputs = [pkgs.coreutils pkgs.himalaya]; + runtimeInputs = [pkgs.bash pkgs.coreutils pkgs.himalaya]; text = '' exec env RUST_LOG="warn,imap_codec::response=error" ${pkgs.himalaya}/bin/himalaya "$@" '';