nixos-config/modules/core/program.nix

18 lines
268 B
Nix

{ pkgs, inputs, ... }:
{
programs = {
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
};
environment.systemPackages = with pkgs; [
wget
git
dig
traceroute
];
}