cfg/mod/security.nix
2025-05-07 01:11:55 +02:00

9 lines
197 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ seahorse ];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gtk2;
};
}