mail config and firefox container tabs

This commit is contained in:
Noah Masur
2022-05-10 23:45:50 -04:00
parent 852385ef4d
commit 5e6dd8c2b8
7 changed files with 96 additions and 28 deletions

View File

@ -1,4 +1,4 @@
{ config, ... }: {
{ config, pkgs, ... }: {
home-manager.users.${config.user} = {
programs.gpg.enable = true;
@ -10,6 +10,7 @@
maxCacheTtlSsh = 34560000; # Can never reset
pinentryFlavor = "tty";
};
home.packages = with pkgs; [ pinentry ];
};
}