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

16 lines
257 B
Nix

{ config, pkgs, ... }:{
home.packages = with pkgs; [
pass
gnupg
pinentry-curses
];
services = {
# lorri.enable = true;
gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryFlavor = "curses";
};
};
}