configuration.nix/modules/home/programs/gpg/default.nix
2024-04-02 10:42:28 +03:00

10 lines
144 B
Nix

{ pkgs, ... }: {
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
};
}