dotfiles/modules/home/common/terminal/programs/cli.nix
Christopher Mühl 53b8448159 Make common modules compatible for nix-darwin
TODO: Determine why nushell config is populated twice
2025-08-06 23:14:38 +02:00

21 lines
487 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
# Shell software
fzf # Fuzzy finding
bat # cat alternative
yazi # Terminal file manager
zellij # terminal workspace
silver-searcher # ag search tool
gum
httpie # HTTP client / CURL alternative
genact # Jibberish output ("I'm waiting for a compile.")
cbonsai # Create bonsai trees
];
programs = {
atuin.enable = true; # Better shell history
atuin.enableNushellIntegration = true;
};
}