dotfiles/home/features/cli/default.nix

38 lines
832 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; [
2024-05-01 01:28:38 +00:00
apg # Automatic password generator
2023-07-28 22:15:33 +00:00
babelfish # Lets fish speak bash
2024-05-01 19:53:25 +00:00
btop # Prettier top
2024-05-23 15:23:12 +00:00
cbonsai # Happy little trees
2023-08-24 17:22:10 +00:00
dig # DNS lookup
2024-01-25 17:55:40 +00:00
dos2unix # Convert DOS line endings to UNIX
2024-05-23 19:00:54 +00:00
fortune # Fortune cookies
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
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
2024-03-05 19:43:20 +00:00
yq # YAML pretty printer and manipulator
2024-01-05 14:48:42 +00:00
zip # zip it
2023-07-28 22:15:33 +00:00
];
2023-08-22 17:00:29 +00:00
}