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

29 lines
309 B
Nix

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