Home

dotnix @cddd09919436113eade08efb7f3417fc9c2b27f6 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / nogui / aerc.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{pkgs, ...}: {
  programs.aerc = {
    enable = true;
    extraConfig = {
      general = {
        default-save-path = "~/Downloads";
        pgp-provider = "gpg";
        unsafe-accounts-conf = true;
      };
      ui = {
        border-char-vertical = "│";
        border-char-horizontal = "─";
        styleset-name = "catppuccin-mocha";
        spinner = "▰▱▱▱▱▱▱,▰▰▱▱▱▱▱,▰▰▰▱▱▱▱,▰▰▰▰▱▱▱,▰▰▰▰▰▱▱,▰▰▰▰▰▰▱,▰▰▰▰▰▰▰";
        spinner-interval = "40ms";
      };
      filters = {
        "text/html" = "html | colorize";
        "text/plain" = "colorize";
      };
    };
    extraAccounts = {
      gmail = {
        source = "imaps://john.olheiser%40gmail.com@imap.gmail.com:993";
        source-cred-cmd = "git config --get sendemail.smtpPass";
        outgoing = "smtps://john.olheiser%40gmail.com@smtp.gmail.com:587";
        outgoing-cred-cmd = "git config --get sendemail.smtpPass";
        default = "INBOX";
        from = ''"John Olheiser" <john.olheiser@gmail.com>'';
        cache-headers = true;
      };
    };
    stylesets = {
      catppuccin-mocha = builtins.readFile (pkgs.fetchFromGitHub {
          owner = "catppuccin";
          repo = "aerc";
          rev = "c1f233bd22894d7ccf69846c3bd7bcd5af0fc2a2";
          sha256 = "sha256-YJdNPROhwgge14O1zuGh/ZK/qjHDxi+xdAyPEIXRI9c=";
        }
        + "/dist/catppuccin-mocha");
    };
  };
}