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