dotfiles/nix/home/features/cli/default.nix

19 lines
332 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-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
bottom # Better top
httpie # Better curl
jq # JSON pretty printer and manipulator
powershell # Powershell
tldr # TLDR pages
];
}