dotfiles/modules/mail/himalaya.nix

24 lines
446 B
Nix
Raw Normal View History

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