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

28 lines
298 B
Nix
Raw Normal View History

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