add email programs
This commit is contained in:
parent
bafd7f91c2
commit
bcfa9c8c44
2 changed files with 26 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
../programs/zsh.nix
|
||||
../programs/vim.nix
|
||||
../programs/mail.nix
|
||||
];
|
||||
programs = {
|
||||
zsh = {
|
||||
|
@ -52,7 +53,7 @@
|
|||
This message was sent from an old email address. My new email address is lotte@chir.rs.
|
||||
Please update your contacts accordingly
|
||||
'';
|
||||
signature.method = "append";
|
||||
signature.showSignature = "append";
|
||||
smtp.host = "mail.darkkirb.de";
|
||||
userName = "darkkirb@darkkirb.de";
|
||||
};
|
||||
|
@ -67,7 +68,7 @@
|
|||
|
||||
https://darkkirb.de • GPG Key 3CEF 5DDA 915A ECB0 • https://keybase.io/darkkirb
|
||||
'';
|
||||
signature.method = "append";
|
||||
signature.showSignature = "append";
|
||||
userName = "lotte@chir.rs";
|
||||
};
|
||||
mdelenk = darkkirb // {
|
||||
|
@ -83,7 +84,7 @@
|
|||
--
|
||||
Morten
|
||||
'';
|
||||
signature.method = "append";
|
||||
signature.showSignature = "append";
|
||||
smtp = {
|
||||
host = "xc.hs-mittweida.de";
|
||||
port = 587;
|
||||
|
@ -92,4 +93,12 @@
|
|||
userName = "mdelenk@hs-mittweida.de";
|
||||
};
|
||||
};
|
||||
home = {
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
shellAliases = {
|
||||
vim = "nvim";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
14
config/programs/mail.nix
Normal file
14
config/programs/mail.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ ... }: {
|
||||
services.imapnotify.enable = true;
|
||||
programs.mbsync.enable = true;
|
||||
programs.notmuch = {
|
||||
enable = true;
|
||||
};
|
||||
programs.neomutt = {
|
||||
enable = true;
|
||||
vimKeys = true;
|
||||
sidebar = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue