NixOS-Config/system/modules/gpg.nix

10 lines
158 B
Nix
Raw Normal View History

2024-08-25 00:21:32 -04:00
{pkgs, ...}: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
environment.systemPackages = with pkgs; [
git-crypt
];
}