blob: 7d04684aa68315a7ce1a6f591245118427323452 (
plain) (
tree)
|
|
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
delve
dive # explore layers in docker images
docker
docker-credential-helpers
nil # nix lsp
nix-direnv # integration with direnv
nixfmt-rfc-style # new formatter
shellcheck
tree
wget
wireshark
];
programs.fish.shellAliases = {
grep = "${pkgs.ripgrep}/bin/rg";
ps = "${pkgs.procs}/bin/procs";
};
home.sessionPath = [
"${config.home.homeDirectory}/.local/bin"
];
}
|