2023-09-04 08:53:41 +01:00
|
|
|
{ pkgs, hostName, ... }:
|
2023-09-02 08:41:07 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
# accounts.emails.accounts = {}; # TODO
|
|
|
|
home.packages = with pkgs; [ protonmail-bridge davmail vdirsyncer ];
|
|
|
|
programs = {
|
|
|
|
mu.enable = true;
|
|
|
|
mbsync = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = import ./config/mbsync.nix { inherit pkgs hostName; };
|
|
|
|
};
|
|
|
|
msmtp = {
|
|
|
|
enable = true;
|
|
|
|
extraConfig = import ./config/msmtp.nix { inherit pkgs hostName; };
|
|
|
|
};
|
|
|
|
# vdirsyncer = { enable = true; };
|
|
|
|
};
|
|
|
|
xdg.configFile."vdirsyncer/config".text =
|
|
|
|
import ./config/vdirsyncer.nix { inherit pkgs; };
|
|
|
|
}
|