dotfiles/nix/hosts/common/programs.nix

17 lines
225 B
Nix

{ pkgs, ... }:
{
programs = {
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
zsh = {
enable = true;
histSize = 5000;
};
};
}