You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
307 B
Nix

4 months ago
{ pkgs, ... }:
5 years ago
{
4 months ago
home.packages = with pkgs; [
pinentry_mac
terminal-notifier
];
5 years ago
home.file.gpg-agent = {
target = ".gnupg/gpg-agent.conf";
text = ''
default-cache-ttl 86400
max-cache-ttl 86400
'';
};
5 years ago
imports = [ ./home-cli.nix ./home-gui.nix ./home-mail.nix ];
5 years ago
}