2023-07-28 22:15:33 +00:00
|
|
|
{ pkgs, ... }: {
|
2023-08-03 21:38:30 +00:00
|
|
|
# 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
|
2023-08-15 18:20:49 +00:00
|
|
|
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
|
|
|
|
];
|
|
|
|
}
|