- Add individual modules for: bat, carapace, direnv, eza, fzf, lf, nitch, television, zellij, zellij-ps, zoxide - Centralize in home/base/cli-tools/ with default.nix aggregator - Simplify home/base/packages by removing extracted tools
18 lines
299 B
Nix
18 lines
299 B
Nix
# CLI tools aggregator — imports all base command-line utilities.
|
|
{...}: {
|
|
imports = [
|
|
./bat.nix
|
|
./carapace.nix
|
|
./direnv.nix
|
|
./eza.nix
|
|
./fzf.nix
|
|
./lf.nix
|
|
./nitch.nix
|
|
./packages.nix
|
|
./television.nix
|
|
./zellij.nix
|
|
./zellij-ps.nix
|
|
./zoxide.nix
|
|
];
|
|
}
|