mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
ef4370bedc
By default tests are expected to produce no assertion. This also updates the existing tests to match.
29 lines
692 B
Nix
29 lines
692 B
Nix
{ ... }:
|
|
|
|
{
|
|
accounts.email = {
|
|
maildirBasePath = "Mail";
|
|
|
|
accounts = {
|
|
"hm@example.com" = {
|
|
primary = true;
|
|
address = "hm@example.com";
|
|
userName = "home.manager";
|
|
realName = "H. M. Test";
|
|
passwordCommand = "password-command";
|
|
imap.host = "imap.example.com";
|
|
smtp.host = "smtp.example.com";
|
|
};
|
|
|
|
hm-account = {
|
|
address = "hm@example.org";
|
|
userName = "home.manager.jr";
|
|
realName = "H. M. Test Jr.";
|
|
passwordCommand = "password-command 2";
|
|
imap.host = "imap.example.org";
|
|
smtp.host = "smtp.example.org";
|
|
smtp.tls.useStartTls = true;
|
|
};
|
|
};
|
|
};
|
|
}
|