blob: c4acc2c9e18fe94c547ae23c3e231b03861ad14f (
plain) (
blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{ config, lib, ...}: with lib; let
cfg = config.santi-modules;
in {
options.santi-modules.mu.enable = mkEnableOption "Enables mu, mbsync and msmtp";
config = mkIf cfg.mu.enable {
environment.systemPackages = [
pkgs.parallel
];
home-manager.users.leonardo = {
programs = {
mu.enable = true;
msmtp.enable = true;
mbsync.enable = true;
};
services.mbsync = {
enable = true;
frequency = "*:0/5";
};
accounts.email.accounts = {
personal = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
primary = true;
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.personal-mail.path}";
};
university = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.university-mail.path}";
};
work = {
address = "[email protected]";
userName = "[email protected]";
imap.host = "imap.gmail.com";
smtp.host = "smtp.gmail.com";
realName = "Leonardo Ribeiro Santiago";
mbsync = {
enable = true;
create = "both";
expunge = "both";
};
msmtp.enable = true;
mu.enable = true;
passwordCommand = "cat ${config.age.secrets.work-mail.path}";
};
};
};
};
}
|