dotfiles/nix/hosts/common/programs.nix

17 lines
225 B
Nix
Raw Normal View History

2025-02-24 10:08:21 +00:00
{ pkgs, ... }:
{
programs = {
2025-02-24 10:08:21 +00:00
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
zsh = {
enable = true;
histSize = 5000;
};
};
}