nixos-config/hosts/d2nix-archives/home-manager/gnupg.nix

16 lines
257 B
Nix
Raw Permalink Normal View History

2023-07-15 17:01:55 +00:00
{ config, pkgs, ... }:{
home.packages = with pkgs; [
pass
gnupg
pinentry-curses
];
services = {
# lorri.enable = true;
gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryFlavor = "curses";
};
};
}