nixos-config/modules/core/program.nix

12 lines
178 B
Nix
Raw Normal View History

2025-09-09 08:14:23 +02:00
{ pkgs, inputs, ... }:
2023-11-05 17:56:55 +01:00
{
programs = {
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
2023-11-05 11:40:44 +01:00
};
}