2021-12-20 13:37:26 -05:00
|
|
|
# Basic, must have, command-line utilities
|
|
|
|
{ config, pkgs, unstable, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Basic command line utilities
|
|
|
|
wget
|
|
|
|
tmux
|
|
|
|
nano
|
|
|
|
unzip
|
|
|
|
any-nix-shell
|
|
|
|
htop
|
|
|
|
# Spell check
|
|
|
|
hunspell
|
|
|
|
hunspellDicts.en-us
|
|
|
|
# Rust rewrites of common shell utilities
|
|
|
|
unstable.starship
|
|
|
|
exa
|
|
|
|
bat
|
|
|
|
fd
|
|
|
|
sd
|
|
|
|
du-dust
|
|
|
|
ripgrep
|
2022-04-19 21:13:40 -04:00
|
|
|
ripgrep-all
|
2021-12-20 13:37:26 -05:00
|
|
|
tokei
|
|
|
|
hyperfine
|
|
|
|
unstable.bottom
|
2022-04-19 21:13:40 -04:00
|
|
|
dogdns
|
|
|
|
unstable.zenith
|
|
|
|
duf
|
|
|
|
# CLI Markdown renderer
|
|
|
|
glow
|
|
|
|
# Command line file manager
|
|
|
|
broot
|
|
|
|
# Much better curl
|
|
|
|
unstable.httpie
|
|
|
|
# CLI spreadsheets
|
|
|
|
visidata
|
|
|
|
# User friendly cut
|
|
|
|
choose
|
|
|
|
# Cheatsheet manager
|
|
|
|
cheat
|
|
|
|
# Ping with a graph
|
|
|
|
gping
|
|
|
|
# Man but terse
|
|
|
|
tealdeer
|
2021-12-20 13:37:26 -05:00
|
|
|
# Pandoc for documentation
|
|
|
|
unstable.pandoc
|
|
|
|
# For nslookup
|
|
|
|
dnsutils
|
|
|
|
# Feh image viewer
|
|
|
|
feh
|
2022-05-13 20:15:25 -04:00
|
|
|
# Mosh for better high-latency ssh
|
|
|
|
mosh
|
2021-12-20 13:37:26 -05:00
|
|
|
];
|
|
|
|
}
|