mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2024-12-22 04:07:28 +01:00
edison: add email client
This commit is contained in:
parent
8eaf7ab934
commit
67755aa4a0
52
hosts/edison/email.nix
Normal file
52
hosts/edison/email.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
programs.neomutt = {
|
||||
enable = true;
|
||||
sidebar = {
|
||||
enable = true;
|
||||
width = 30;
|
||||
};
|
||||
sort = "reverse-threads";
|
||||
vimKeys = true;
|
||||
checkStatsInterval = 60;
|
||||
};
|
||||
|
||||
programs.mbsync.enable = true;
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
hooks = {
|
||||
preNew = "mbsync --all";
|
||||
};
|
||||
};
|
||||
# programs.msmtp.enable = true;
|
||||
|
||||
accounts.email = {
|
||||
accounts.felix-albrigtsen-it = rec {
|
||||
address = "felix@albrigtsen.it";
|
||||
userName = address;
|
||||
primary = true;
|
||||
realName = "Felix Albrigtsen";
|
||||
signature = {
|
||||
text = ''
|
||||
Med vennlig hilsen
|
||||
${realName}
|
||||
'';
|
||||
showSignature = "append";
|
||||
};
|
||||
|
||||
imap.host = "imap.migadu.com";
|
||||
smtp.host = "smtp.migadu.com";
|
||||
passwordCommand = "cat ~/.secrets/email/migadu"; # yolo / TODO
|
||||
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir"; # Create subfolders locally
|
||||
# expugne = "both";
|
||||
};
|
||||
msmtp.enable = true;
|
||||
notmuch.enable = true;
|
||||
neomutt.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
imports = [
|
||||
./../../home/base.nix
|
||||
./email.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
Loading…
Reference in New Issue
Block a user