{ config, pkgs, ... }: { home.packages = with pkgs; [ bandwhich bottom coreutils delve dive # explore layers in docker images docker docker-credential-helpers dust dysk jless nil # nix lsp nix-direnv # integration with direnv nixfmt-rfc-style # new formatter procs shellcheck tree wget wireshark yq ] ++ lib.optionals pkgs.stdenv.isLinux [ pciutils powertop traceroute ]; programs.ripgrep.enable = true; programs.jq.enable = true; programs.fish.shellAliases = { grep = "${pkgs.ripgrep}/bin/rg"; ps = "${pkgs.procs}/bin/procs"; }; home.sessionPath = [ "${config.home.homeDirectory}/.local/bin" ]; }