Bruno BELANYI
9f7472222c
Don't use it in wireguard to keep it consistent, as only half the commands could use it.
24 lines
503 B
Nix
24 lines
503 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.my.home.mail.himalaya;
|
|
in
|
|
{
|
|
config.programs.himalaya = lib.mkIf cfg.enable {
|
|
enable = true;
|
|
|
|
settings = {
|
|
notify-cmd =
|
|
let
|
|
notify-send = lib.getExe pkgs.libnotify;
|
|
in
|
|
pkgs.writeScript "mail-notifier" ''
|
|
SENDER="$1"
|
|
SUBJECT="$2"
|
|
${notify-send} \
|
|
-c himalaya \
|
|
-- "$(printf 'Received email from %s\n\n%s' "$SENDER" "$SUBJECT")"
|
|
'';
|
|
};
|
|
};
|
|
}
|