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

34 lines
423 B
Nix
Raw Normal View History

2023-04-12 08:25:36 +00:00
{ pkgs, ... }: {
2022-12-30 12:05:46 +00:00
imports = [
./bat.nix
./fish.nix
./neofetch.nix
2023-02-05 13:36:38 +00:00
./secrets.nix
2022-12-30 12:05:46 +00:00
./starship.nix
2022-12-31 12:07:15 +00:00
./tmux.nix
2022-12-30 12:05:46 +00:00
];
2023-04-12 08:25:36 +00:00
programs.autojump = {
enable = true;
enableFishIntegration = true;
};
2022-12-30 12:05:46 +00:00
home.packages = with pkgs; [
bc
busybox
2022-12-30 12:05:46 +00:00
comma
direnv
2022-12-30 12:05:46 +00:00
exa
fd
2023-02-01 11:38:23 +00:00
htop
2022-12-30 12:05:46 +00:00
httpie
jq
procs
progress
ripgrep
tldr
trash-cli
tree
2023-02-01 11:38:23 +00:00
unzip
zip
2022-12-30 12:05:46 +00:00
];
}