nixos-config/modules/core/program.nix

11 lines
189 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ pkgs, ... }:
{
2023-11-05 11:40:44 +01:00
programs.dconf.enable = true;
programs.zsh.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
2023-12-25 19:01:58 +01:00
# pinentryFlavor = "";
2023-11-05 11:40:44 +01:00
};
}