10 lines
139 B
Nix
10 lines
139 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
pinentry.package = pkgs.pinentry-qt;
|
|
enableSshSupport = true;
|
|
};
|
|
}
|