nixos-config/home/gpg.nix

14 lines
240 B
Nix

{ config, pkgs, ... }:
{
services.gpg-agent = {
enable = true;
enableExtraSocket = true;
pinentryPackage = pkgs.pinentry-gnome3;
};
programs.gpg = {
enable = true;
homedir = "${config.xdg.dataHome}/gnupg";
};
}