dotfiles/home/features/cli/default.nix
2023-08-04 13:48:55 -05:00

21 lines
369 B
Nix

{ pkgs, ... }: {
# Core CLI apps
imports = [
./exa.nix
./git.nix
./fish.nix
./tmux.nix
./vim.nix
];
home.packages = with pkgs; [
babelfish # Lets fish speak bash
bottom # Better top
httpie # Better curl
jq # JSON pretty printer and manipulator
powershell # Powershell
python3 # Python 3
tldr # TLDR pages
];
}