Files
AsdamNixOS/modules/features/gpg.nix
2026-08-06 11:01:00 +02:00

10 lines
245 B
Nix

{ inputs, lib, self, ... }: {
flake.nixosModules.gnupg = { pkgs, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-rofi;
};
};
}