10 lines
145 B
Nix
10 lines
145 B
Nix
{
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
git-crypt
|
|
];
|
|
}
|