configuration.nix/modules/home/programs/gpg/default.nix

10 lines
144 B
Nix
Raw Normal View History

2023-12-01 17:59:45 +01:00
{ pkgs, ... }: {
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
};
}