rice/programs/gpg.nix

11 lines
167 B
Nix
Raw Normal View History

2022-08-22 17:05:46 +00:00
{pkgs, ...}: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
home-manager.users.buffet = {
programs.gpg.enable = true;
};
}