Files
nixconfig/modules/nixos/gnupg.nix

10 lines
136 B
Nix

{ config, lib, pkgs, ... }:
{
# enable gnupg agent
services.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
}