nixos-config/hosts/dell-5590/home-manager/gnupg.nix

18 lines
268 B
Nix
Raw Normal View History

{ config, pkgs, ... }:{
home.packages = with pkgs; [
pass
gnupg
pinentry-curses
];
2022-03-29 11:47:21 +00:00
#{
# permissions = "700";
#};
services = {
gpg-agent = {
enable = true;
enableSshSupport = true;
pinentryFlavor = "curses";
};
};
}