Extract a gnupg mixin

This commit is contained in:
Oliver Davies 2025-04-06 00:45:11 +01:00
parent 2f56994696
commit 4bbca3493e
7 changed files with 8 additions and 12 deletions

11
modules/mixins/gnupg.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
};
}