dotfiles/home/features/cli/default.nix

33 lines
639 B
Nix
Raw Normal View History

2023-07-28 22:15:33 +00:00
{ pkgs, ... }: {
# Core CLI apps
2023-07-28 22:15:33 +00:00
imports = [
2023-12-07 16:06:09 +00:00
./eza.nix
2023-07-29 02:09:22 +00:00
./git.nix
2023-07-28 23:03:24 +00:00
./fish.nix
2023-11-05 03:26:20 +00:00
./nix-index.nix
2023-07-28 22:15:33 +00:00
./tmux.nix
./vim.nix
];
home.packages = with pkgs; [
babelfish # Lets fish speak bash
2023-08-04 19:11:03 +00:00
bottom # Prettier top
2023-08-24 17:22:10 +00:00
dig # DNS lookup
2023-08-22 17:00:29 +00:00
gh # Github CLI
2023-07-28 22:15:33 +00:00
httpie # Better curl
jq # JSON pretty printer and manipulator
mtr # Better traceroute
nmap # Network scanner
2023-11-05 03:08:30 +00:00
nodejs # Node js
2023-11-03 14:07:01 +00:00
nodePackages.npm # Node package manager
2023-07-28 22:15:33 +00:00
powershell # Powershell
2023-10-05 21:25:18 +00:00
pssh # Parallel SSH
2023-08-04 18:48:55 +00:00
python3 # Python 3
2024-01-17 21:14:08 +00:00
rsync # Remote sync
2023-07-28 22:15:33 +00:00
tldr # TLDR pages
2024-01-05 14:48:42 +00:00
unzip # unzip it
zip # zip it
2023-07-28 22:15:33 +00:00
];
2023-08-22 17:00:29 +00:00
}