dotfiles/nix/hosts/t490/programs.nix

14 lines
187 B
Nix
Raw Normal View History

2025-01-05 13:56:55 +00:00
{ pkgs, ... }:
{
2025-01-12 11:48:38 +00:00
programs = {
dconf.enable = true;
2025-01-12 11:48:38 +00:00
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-qt;
};
2025-01-05 13:56:55 +00:00
};
}