added email clients.

This commit is contained in:
Gabe Venberg 2024-04-16 13:30:03 -05:00
parent a3d350ea15
commit e54ef2c4ce
4 changed files with 26 additions and 0 deletions

View file

@ -85,6 +85,7 @@ inputs.nixpkgs.lib.nixosSystem {
../../modules/home-manager/terminal
../../modules/home-manager/nvim
../../modules/home-manager
../modules/home-manager/email.nix
inputs.nixvim.homeManagerModules.nixvim
];
};

View file

@ -30,5 +30,6 @@
../modules/home-manager/syncthing.nix
../modules/home-manager/beets.nix
../modules/home-manager/mpd/mpd.nix
../modules/home-manager/email.nix
];
}

View file

@ -31,5 +31,6 @@
../modules/home-manager/nvim
../modules/home-manager
../modules/home-manager/syncthing.nix
../modules/home-manager/email.nix
];
}

View file

@ -0,0 +1,23 @@
{
config,
pkgs,
lib,
...
}: {
programs.himalaya.enable = true;
programs.aerc = {
enable = true;
extraConfig.general.unsafe-accounts-conf = true;
};
accounts.email.accounts.gmail = {
address = "gabevenberg@gmail.com";
primary = true;
flavor = "gmail.com";
passwordCommand = "cat ~/keys/plaintext/gmail";
realName = "Gabe Venberg";
himalaya.enable = true;
aerc.enable = true;
};
}