flake/modules/home/terminal/tools.nix
2024-06-11 11:34:00 +00:00

21 lines
372 B
Nix

{ pkgs, lib, config, ... }: {
options.mods.terminal.tools.enable = lib.mkEnableOption "enables cli tools";
config = lib.mkIf config.mods.terminal.tools.enable {
home.packages = with pkgs; [
# libraries
glow
# file managing
fd
ripgrep
zoxide
trash-cli
# programs
bottom
zellij
fend
];
};
}