gpg-agent: migrate to 'pinentryPackage'

See: 01e4a5143e
This commit is contained in:
Daniel Siepmann 2024-03-28 19:01:54 +01:00
parent 6560232167
commit 455b8544d9
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
3 changed files with 5 additions and 4 deletions

View file

@ -79,7 +79,7 @@ in {
};
services = import ./home/services.nix {
inherit config ownLib;
inherit config ownLib pkgs;
};
systemd.user = import ./home/systemd.nix {

View file

@ -1,4 +1,4 @@
{ config, ownLib }:
{ config, ownLib, pkgs }:
{
@ -7,6 +7,7 @@
};
gpg-agent = import ./services/gpg-agent.nix {
inherit pkgs;
};
vdirsyncer = {

View file

@ -1,9 +1,9 @@
_:
{ pkgs }:
{
enable = true;
defaultCacheTtl = 3600;
maxCacheTtl = 36000;
pinentryFlavor = "qt";
pinentryPackage = pkgs.pinentry-qt;
}