More dots

This commit is contained in:
2019-11-14 09:46:57 -05:00
parent 61c2cc0006
commit 2626a55079
5 changed files with 61 additions and 52 deletions

16
home-mac.nix Normal file
View File

@@ -0,0 +1,16 @@
{ 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 ];
}