nixos-config/modules/core/program.nix
2025-09-09 08:14:23 +02:00

20 lines
363 B
Nix

{ pkgs, inputs, ... }:
{
programs = {
dconf.enable = true;
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
};
environment.systemPackages = with pkgs; [
wget
git
dig
traceroute
inputs.iamb.packages.${pkgs.stdenv.targetPlatform.system}.default
];
}