1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-01 06:31:04 +01:00
home-manager/tests/modules/services/imapnotify/imapnotify.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

43 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
imports = [ ../../accounts/email-test-accounts.nix ];
accounts.email.accounts = {
"hm@example.com" = {
notmuch.enable = true;
imap.port = 993;
imapnotify = {
enable = true;
boxes = [ "Inbox" ];
extraArgs = [ "--wait 1" ];
onNotify = ''
${pkgs.notmuch}/bin/notmuch new
'';
};
};
};
services.imapnotify = {
enable = true;
package = (
config.lib.test.mkStubPackage {
name = "goimapnotify";
outPath = "@goimapnotify@";
}
);
};
nmt.script = ''
serviceFile="home-files/.config/systemd/user/imapnotify-hm-example.com.service"
serviceFileNormalized="$(normalizeStorePaths "$serviceFile")"
assertFileExists $serviceFile
assertFileContent $serviceFileNormalized ${./imapnotify.service}
configFile="home-files/.config/imapnotify/imapnotify-hm-example.com-config.json"
configFileNormalized="$(normalizeStorePaths "$configFile")"
assertFileExists $configFile
assertFileContent $configFileNormalized ${./imapnotify-config.json}
'';
}