dotfiles/modules/services/gpg.nix

12 lines
160 B
Nix
Raw Normal View History

2022-01-24 12:40:44 +01:00
{ config, lib, pkgs, ... }:
{
programs = {
ssh.startAgent = false;
gnupg.agent = {
2022-01-24 12:40:44 +01:00
enable = true;
enableSSHSupport = true;
2022-01-24 12:40:44 +01:00
};
};
}