System/applications/utils-core.nix

57 lines
929 B
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
# Basic, must have, command-line utilities
2022-06-06 09:41:12 -04:00
{ config, pkgs, ... }:
2021-12-20 13:37:26 -05:00
{
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
starship
2021-12-20 13:37:26 -05:00
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
2022-06-06 09:45:07 -04:00
bottom
2022-04-19 21:13:40 -04:00
dogdns
duf
# CLI Markdown renderer
glow
# Command line file manager
broot
# Much better curl
httpie
2022-04-19 21:13:40 -04:00
# 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
2022-06-06 09:41:12 -04:00
pandoc
2021-12-20 13:37:26 -05:00
# For nslookup
dnsutils
# Feh image viewer
feh
2022-05-13 20:15:25 -04:00
# Mosh for better high-latency ssh
mosh
2022-06-03 03:17:32 -04:00
# PV for viewing pipes
pv
2021-12-20 13:37:26 -05:00
];
}