1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 20:03:29 +02:00
home-manager/tests/modules/programs/mbsync/mbsync.nix

29 lines
572 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
imports = [ ../../accounts/email-test-accounts.nix ];
config = {
programs.mbsync = {
enable = true;
groups.inboxes = {
"hm@example.com" = [ "Inbox1" "Inbox2" ];
hm-account = [ "Inbox" ];
};
};
accounts.email.accounts = {
2020-02-02 00:39:17 +01:00
"hm@example.com".mbsync = { enable = true; };
2020-02-02 00:39:17 +01:00
hm-account.mbsync = { enable = true; };
};
nmt.script = ''
assertFileExists home-files/.mbsyncrc
assertFileContent home-files/.mbsyncrc ${./mbsync-expected.conf}
'';
};
}