dotfiles/home/features/cli/default.nix
2023-11-04 22:03:22 -05:00

29 lines
561 B
Nix

{ pkgs, ... }: {
# Core CLI apps
imports = [
./exa.nix
./git.nix
./fish.nix
./tmux.nix
./vim.nix
];
home.packages = with pkgs; [
babelfish # Lets fish speak bash
bottom # Prettier top
dig # DNS lookup
gh # Github CLI
httpie # Better curl
jq # JSON pretty printer and manipulator
mtr # Better traceroute
nmap # Network scanner
nodePackages.npm # Node package manager
powershell # Powershell
pssh # Parallel SSH
python3 # Python 3
tldr # TLDR pages
unzip # zip-unzip it
];
}