mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
6abb775e75
* himalaya: add soywod to maintainers * himalaya: make the config safer Also added two services and more tests. * himalaya: fix doc + typos * himalaya: use freeform * himalaya: run ./format * himalaya: make use of mkPackageOption
28 lines
579 B
Nix
28 lines
579 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;
|
|
himalaya.backend = "deprecated";
|
|
himalaya.sender = "deprecated";
|
|
};
|
|
};
|
|
|
|
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
|
|
}
|
|
'';
|
|
}
|