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.
17 lines
331 B
Nix
17 lines
331 B
Nix
5 years ago
|
{ pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
home.packages = with pkgs; [ pinentry_mac ];
|
||
|
|
||
|
home.file.gpg-agent = {
|
||
|
target = ".gnupg/gpg-agent.conf";
|
||
|
text = ''
|
||
|
pinentry-program ${builtins.getEnv "HOME"}/.nix-profile/bin/pinentry
|
||
|
default-cache-ttl 86400
|
||
|
max-cache-ttl 86400
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
imports = [ ./home-common.nix ];
|
||
|
}
|