nixos-config/modules/core/program.nix
2024-01-13 14:35:42 +01:00

11 lines
189 B
Nix

{ pkgs, ... }:
{
programs.dconf.enable = true;
programs.zsh.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
}