Files
My_NixOS_Config/nixos/homeserver/programs.nix
2025-04-14 17:27:09 +01:00

15 lines
187 B
Nix

{
inputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-tty;
enableSSHSupport = true;
};
}