Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2026-03-01 18:48:32 +00:00
parent b0d086a0e7
commit 2e4591f9b8
2 changed files with 51 additions and 49 deletions

View File

@@ -1,13 +1,14 @@
{pkgs, ...}: {
programs.himalaya = {
enable = true;
package = pkgs.writeShellApplication {
name = "himalaya";
runtimeInputs = [pkgs.himalaya];
text = ''
exec env RUST_LOG="warn,imap_codec::response=error" ${pkgs.himalaya}/bin/himalaya "$@"
'';
};
package =
pkgs.writeShellApplication {
name = "himalaya";
runtimeInputs = [pkgs.himalaya];
text = ''
exec env RUST_LOG="warn,imap_codec::response=error" ${pkgs.himalaya}/bin/himalaya "$@"
'';
};
};
accounts.email = {