about summary refs log blame commit diff stats
path: root/modules/home/conf/mail/default.nix
blob: 0ecbe40a11fe4b7eeb17c491236a2c8b0b712b01 (plain) (tree)
1
2
3
4
5
6
7
8
9


         
      
                                                            
 
                                         


                                                       
    
{
  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;
  };
}