mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
26 lines
502 B
Nix
26 lines
502 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
accounts.email.accounts = {
|
|
"hm@example.com" = {
|
|
imap.port = 993;
|
|
smtp.port = 465;
|
|
himalaya.enable = true;
|
|
};
|
|
};
|
|
|
|
programs.himalaya = { enable = true; };
|
|
|
|
test.stubs.himalaya = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/himalaya/config.toml
|
|
assertFileContent home-files/.config/himalaya/config.toml ${
|
|
./basic-expected.toml
|
|
}
|
|
'';
|
|
}
|