diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-12-23 22:12:03 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-12-23 22:12:09 +0530 |
| commit | d96215af9e12b41c50307e0c220c3de5578c3f4b (patch) | |
| tree | 0db7efb9f86b5798268cc72f08faedb31ca62b06 | |
| parent | 7f80d1985b95b2826b2ce307f21dd3a41caad927 (diff) | |
| download | nixos-config-d96215af9e12b41c50307e0c220c3de5578c3f4b.tar.gz nixos-config-d96215af9e12b41c50307e0c220c3de5578c3f4b.zip | |
Consumes pinentry package in gpg agent
Diffstat (limited to '')
| -rw-r--r-- | home.nix | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,7 @@ { pkgs, ... }: -{ +let + localPkgs = import ./packages/default.nix { pkgs = pkgs; }; +in { #home.packages = with pkgs; [ #picom #]; @@ -9,6 +11,10 @@ maxCacheTtl = 864000; defaultCacheTtl = 864000; enableSshSupport = false; + pinentryFlavor = null; + extraConfig = '' + pinentry-program ${localPkgs.anypinentry}/bin/anypinentry + ''; }; home.file = { |
