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

20 lines
359 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
trash-cli
# programs
bottom
zellij
fend
];
};
}