NixOS-Config/nixos/modules/gpg.nix

10 lines
145 B
Nix
Raw Normal View History

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