mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-05 14:26:19 +02:00
12 lines
204 B
Nix
12 lines
204 B
Nix
{ ... }:
|
|
{
|
|
programs.gnupg = {
|
|
dirmngr.enable = true;
|
|
agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
pinentryFlavor = "gnome3";
|
|
};
|
|
};
|
|
services.pcscd.enable = true;
|
|
}
|