nix-configurations/home/features/cli/default.nix

27 lines
283 B
Nix
Raw Normal View History

2022-12-30 12:05:46 +00:00
{ pkgs, ... }:
{
imports = [
./bat.nix
./fish.nix
./neofetch.nix
./starship.nix
];
home.packages = with pkgs; [
autojump
bc
comma
exa
fd
httpie
jq
nixfmt
procs
progress
ripgrep
tldr
trash-cli
tree
];
}