20 lines
330 B
Nix
20 lines
330 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
pinentry-gnome
|
|
pkgs.gcr
|
|
];
|
|
|
|
programs.gpg = {
|
|
enable = true;
|
|
scdaemonSettings = {
|
|
disable-ccid = true;
|
|
};
|
|
};
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableScDaemon = true;
|
|
enableZshIntegration = true;
|
|
pinentryFlavor = "gnome3";
|
|
};
|
|
}
|