dotfiles/home/features/cli/default.nix

23 lines
426 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-08-04 13:48:14 +00:00
./exa.nix
2023-07-29 02:09:22 +00:00
./git.nix
2023-07-28 23:03:24 +00:00
./fish.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-07-28 22:15:33 +00:00
httpie # Better curl
jq # JSON pretty printer and manipulator
mtr # Better traceroute
nmap # Network scanner
2023-07-28 22:15:33 +00:00
powershell # Powershell
2023-08-04 18:48:55 +00:00
python3 # Python 3
2023-07-28 22:15:33 +00:00
tldr # TLDR pages
];
}