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