nixos/modules/packages.nix

49 lines
1.1 KiB
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
neofetch
# archives
zip
xz
unzip
# navigation
ripgrep # recursively searches directories for a regex pattern
lf # ranger written in C
fzf # A command-line fuzzy finder
bat # better cat
# networking tools
mtr # A network diagnostic tool
iperf3
dnsutils # `dig` + `nslookup`
ldns # replacement of `dig`, it provide the command `drill`
aria2 # A lightweight multi-protocol & multi-source command-line download utility
socat # replacement of openbsd-netcat
nmap # A utility for network discovery and security auditing
ipcalc # it is a calculator for the IPv4/v6 addresses
# misc
file
gnupg
# productivity
hugo # static site generator
glow # markdown previewer in terminal (insanely cool)
btop # replacement of htop/nmon
iotop # io monitoring
iftop # network monitoring
# system call monitoring
strace # system call monitoring
ltrace # library call monitoring
lsof # list open files
# system tools
pciutils # lspci
usbutils # lsusb
];
}