mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
24 lines
442 B
Nix
24 lines
442 B
Nix
{ config, ... }: {
|
|
|
|
config = {
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
programs.himalaya = { enable = true; };
|
|
accounts.email.accounts.home.himalaya = {
|
|
enable = true;
|
|
backend = "imap";
|
|
sender = "smtp";
|
|
settings = {
|
|
downloads-dir = config.userDirs.download;
|
|
smtp-insecure = true;
|
|
};
|
|
};
|
|
|
|
programs.fish.shellAbbrs = { hi = "himalaya"; };
|
|
|
|
};
|
|
|
|
};
|
|
}
|