35 lines
475 B
Nix
35 lines
475 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
app_list.terminal_tools.enable =
|
|
lib.mkEnableOption "Enable terminal tools applist";
|
|
};
|
|
|
|
config = lib.mkIf config.app_list.terminal_tools.enable {
|
|
|
|
home.packages = with pkgs; [
|
|
pfetch
|
|
bat
|
|
btop
|
|
cmatrix
|
|
entr
|
|
figlet
|
|
jp2a
|
|
yt-dlp
|
|
eza
|
|
nvtopPackages.full
|
|
neofetch
|
|
wget
|
|
curl
|
|
fzf
|
|
tldr
|
|
ranger
|
|
unzip
|
|
];
|
|
};
|
|
}
|