nixos-config/modules/core/program.nix
2025-09-23 19:10:22 +02:00

19 lines
293 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
];
}