54 lines
759 B
Nix
54 lines
759 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
lsof
|
||
|
lshw
|
||
|
file
|
||
|
tmux
|
||
|
#parallel # already provided by moreutils
|
||
|
pwgen
|
||
|
git
|
||
|
#gh
|
||
|
#hub
|
||
|
nmap
|
||
|
rsync
|
||
|
bind.dnsutils
|
||
|
gnused
|
||
|
gnumake
|
||
|
coreutils-full
|
||
|
moreutils
|
||
|
binutils
|
||
|
diffutils
|
||
|
findutils
|
||
|
usbutils
|
||
|
bash-completion
|
||
|
curl
|
||
|
wget
|
||
|
strace
|
||
|
killall
|
||
|
|
||
|
htop
|
||
|
glances
|
||
|
|
||
|
#sshfs
|
||
|
entr
|
||
|
tealdeer # tldr, but rust
|
||
|
axel aria
|
||
|
bat
|
||
|
xe # xargs alternative
|
||
|
sd # sed alternative
|
||
|
fd # find alternative
|
||
|
silver-searcher # `ag`
|
||
|
ripgrep # 'rg'
|
||
|
jq
|
||
|
yq
|
||
|
htmlq
|
||
|
sysz
|
||
|
du-dust # du alternative
|
||
|
ncdu # Disk usage analyzer with an ncurses interface
|
||
|
|
||
|
visidata
|
||
|
sqlite
|
||
|
];
|
||
|
}
|