about summary refs log tree commit diff stats
path: root/modules/home/conf/mail/default.nix
blob: 0ecbe40a11fe4b7eeb17c491236a2c8b0b712b01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  config,
  pkgs,
  ...
}: let
  benedikt = import ./accounts/benedikt.nix {inherit pkgs;};
  soispha = import ./accounts/soispha.nix {inherit pkgs;};

  accounts = {inherit soispha benedikt;};
in {
  accounts.email = {
    maildirBasePath = "${config.xdg.dataHome}/maildir";
    inherit accounts;
  };
}