dotfiles/home/features/cli/default.nix
John Bowdre cabb70496d remove python3 and hugo packages
these developement packages should be managed with a per-project
nix-shell environment instead of a global package install
2024-02-25 15:50:52 -06:00

33 lines
664 B
Nix

{ pkgs, ... }: {
# Core CLI apps
imports = [
./eza.nix
./git.nix
./fish.nix
./nix-index.nix
./tmux.nix
./vim.nix
];
home.packages = with pkgs; [
babelfish # Lets fish speak bash
bottom # Prettier top
dig # DNS lookup
dos2unix # Convert DOS line endings to UNIX
gh # Github CLI
httpie # Better curl
jq # JSON pretty printer and manipulator
mtr # Better traceroute
nmap # Network scanner
nodejs # Node js
nodePackages.npm # Node package manager
powershell # Powershell
pssh # Parallel SSH
rsync # Remote sync
tldr # TLDR pages
unzip # unzip it
zip # zip it
];
}