NixOS-95/Modules/Applications/Shell/cli-tools/default.nix
2025-07-24 15:19:29 +02:00

17 lines
300 B
Nix

{ lib, config, pkgs, ... }:
{
options.cliTools.enable = lib.mkEnableOption "Enable CLI tools like fastfetch and hyfetch";
config = lib.mkIf config.cliTools.enable {
home.packages = with pkgs; [
fastfetch
hyfetch
bat
fzf
tree
lsd
tmux
];
};
}