dotfiles/modules/services/gpg.nix
2022-06-02 18:06:04 +02:00

11 lines
160 B
Nix

{ config, lib, pkgs, ... }:
{
programs = {
ssh.startAgent = false;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}