blob: cbfd1108c23d2190cd92852cae5732a0411598d5 (
plain) (
tree)
|
|
{ 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"
];
}
|