flocon/modules/nix/services/gnupg.nix

13 lines
184 B
Nix
Raw Normal View History

{
lib,
config,
...
}: {
config = lib.mkIf config.local.profiles.desktop.enable {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}