14 lines
187 B
Nix
14 lines
187 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
dconf.enable = true;
|
|
|
|
gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
pinentryPackage = pkgs.pinentry-qt;
|
|
};
|
|
};
|
|
}
|