42 lines
878 B
Nix
42 lines
878 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
||
|
|
||
|
config = {
|
||
|
accounts.email.accounts = {
|
||
|
"hm@example.com" = {
|
||
|
notmuch.enable = true;
|
||
|
imap.port = 993;
|
||
|
|
||
|
imapnotify = {
|
||
|
enable = true;
|
||
|
boxes = [ "Inbox" ];
|
||
|
onNotify = ''
|
||
|
${pkgs.notmuch}/bin/notmuch new
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services.imapnotify = {
|
||
|
enable = true;
|
||
|
package = (config.lib.test.mkStubPackage {
|
||
|
name = "goimapnotify";
|
||
|
outPath = "@goimapnotify@";
|
||
|
});
|
||
|
};
|
||
|
|
||
|
nmt.script = let
|
||
|
serviceFileName =
|
||
|
"org.nix-community.home.imapnotify-hm-example.com.plist";
|
||
|
in ''
|
||
|
serviceFile=LaunchAgents/${serviceFileName}
|
||
|
assertFileExists $serviceFile
|
||
|
assertFileContent $serviceFile ${./launchd.plist}
|
||
|
'';
|
||
|
};
|
||
|
}
|