NixOS-Config/modules/system/programs/git/gpg/default.nix
2024-10-09 03:36:08 -04:00

12 lines
163 B
Nix

{ pkgs, ... }:
{
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
environment.systemPackages = with pkgs; [
git-crypt
];
}