Getting aerc working. Separating out mail into its own nix file

This commit is contained in:
2019-11-28 22:12:41 -05:00
parent a8daa32464
commit 1d0fee7cd2
4 changed files with 110 additions and 92 deletions

View File

@@ -1,7 +1,7 @@
{ pkgs, lib, ... }:
{
home.packages = with pkgs; [ pinentry_mac ];
home.packages = with pkgs; [ pinentry_mac terminal-notifier ];
home.file.gpg-agent = {
target = ".gnupg/gpg-agent.conf";
@@ -14,5 +14,5 @@
programs.zsh.initExtra = "source ~/.nix-profile/etc/profile.d/nix.sh";
imports = [ ./home-common.nix ];
imports = [ ./home-common.nix ./home-mail.nix ];
}