This commit is contained in:
2025-11-15 23:57:24 +08:00
parent b50e4e489c
commit c8830c8198
6 changed files with 9 additions and 7 deletions
+39
View File
@@ -0,0 +1,39 @@
# Modern CLI tools and utilities
{
inputs,
lib,
config,
pkgs,
...
}: {
home.packages = with pkgs; [
# Modern replacements for standard tools
ripgrep # Better grep
fd # Better find
sd # Better sed
du-dust # Better du
duf # Better df
procs # Better ps
bottom # Better top/htop
# System monitoring
htop
# File utilities
tree
# Network tools
wget
curl
# Text processing
jq # JSON processor
yq-go # YAML processor
# Optional file managers (commented out by default)
# ranger
# nnn
# lf
];
}