rice/hosts/alice/gpg.nix

8 lines
141 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-01-19 14:36:08 +00:00
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gnome3;
2024-01-19 14:36:08 +00:00
};
}