home: add mail and accounts configuration

This commit is contained in:
Bruno BELANYI 2021-05-22 16:04:46 +02:00
parent 7a91bf3906
commit 0452d696ae
3 changed files with 108 additions and 0 deletions

12
home/mail/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, lib, ... }:
{
imports = [
./accounts.nix
];
config = {
accounts.email = {
maildirBasePath = "mail";
};
};
}