home-manager | started config mail (just notmuch for now)
This commit is contained in:
parent
4aea0f3da9
commit
fe1c6e4387
2 changed files with 27 additions and 0 deletions
26
home/mail.nix
Normal file
26
home/mail.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
accounts.email.accounts = {
|
||||
"don@donharper.org" = {
|
||||
primary = true;
|
||||
realName = "Don Harper";
|
||||
userName = "don";
|
||||
address = "don@donharper.org";
|
||||
#secondaries = [ "duck@duckland.org" "duckunix@gmail.com" ];
|
||||
notmuch.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
new = {
|
||||
tags = [ "unread" ];
|
||||
ignore = [ ".mbsyncstate" ".uidvalidity" "Sent Mail" "Trash" ];
|
||||
};
|
||||
extraConfig = {
|
||||
database = {
|
||||
path = "/home/don/Mail";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -9,6 +9,7 @@
|
|||
./lf.nix
|
||||
./liquidprompt.nix
|
||||
./listadmin.nix
|
||||
./mail.nix
|
||||
./neovim.nix
|
||||
./newsboat.nix
|
||||
./taskwarrior.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue