23 lines
522 B
Nix
23 lines
522 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
||
|
|
||
|
config = {
|
||
|
home.username = "hm-user";
|
||
|
home.homeDirectory = "/home/hm-user";
|
||
|
|
||
|
programs.lieer.enable = true;
|
||
|
|
||
|
accounts.email.accounts = { "hm@example.com".lieer.enable = true; };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/Mail/hm@example.com/.gmailieer.json
|
||
|
assertFileContent home-files/Mail/hm@example.com/.gmailieer.json \
|
||
|
${./lieer-expected.json}
|
||
|
'';
|
||
|
};
|
||
|
}
|