dotfiles/modules/mail/himalaya.nix

24 lines
446 B
Nix
Raw Normal View History

2022-10-30 17:57:14 +00:00
{ config, ... }: {
2022-05-11 03:45:50 +00:00
config = {
home-manager.users.${config.user} = {
programs.himalaya = { enable = true; };
2022-10-30 17:57:14 +00:00
accounts.email.accounts.home.himalaya = {
2022-05-17 02:05:21 +00:00
enable = true;
2022-10-30 17:57:14 +00:00
settings = {
backend = "imap";
sender = "smtp";
downloads-dir = config.userDirs.download;
smtp-insecure = true;
2022-04-29 02:55:42 +00:00
};
};
2022-05-11 03:45:50 +00:00
programs.fish.shellAbbrs = { hi = "himalaya"; };
2022-04-29 02:55:42 +00:00
};
2022-05-11 03:45:50 +00:00
2022-04-29 02:55:42 +00:00
};
}