16 lines
261 B
Nix
16 lines
261 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# enable gnupg agent
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnupg
|
|
pinentry-curses
|
|
];
|
|
}
|