aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/lieer/lieer.nix
blob: 2ce4fb4e031c6b4a7d28ffe9a8c6df3e58a597ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs, ... }:

with lib;

{
  imports = [ ../../accounts/email-test-accounts.nix ];

  config = {
    programs.lieer.enable = true;

    accounts.email.accounts = { "hm@example.com".lieer.enable = true; };

    nixpkgs.overlays = [
      (self: super: { gmailieer = pkgs.writeScriptBin "dummy-gmailieer" ""; })
    ];

    nmt.script = ''
      assertFileExists home-files/Mail/hm@example.com/.gmailieer.json
      assertFileContent home-files/Mail/hm@example.com/.gmailieer.json \
                        ${./lieer-expected.json}
    '';
  };
}