mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-26 15:34:35 +00:00
More packages
This commit is contained in:
parent
df7d101411
commit
092f056b6a
|
@ -5,17 +5,41 @@ in
|
||||||
{
|
{
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
fzf
|
fzf # fuzzy finder
|
||||||
jq
|
jq # JSON processor
|
||||||
fd
|
zip # compression/archiver for creating .zip files
|
||||||
ripgrep
|
unzip # extraction util for .zip files
|
||||||
unzip
|
file # show type of file
|
||||||
file
|
rsync # incremental file transfer util
|
||||||
rsync
|
btop # system monitor
|
||||||
btop
|
hyperfine # benchmarker
|
||||||
hyperfine
|
delta # git delta viewer
|
||||||
delta
|
gnupg # encryption
|
||||||
gnupg
|
bc # GNU calculator
|
||||||
|
mediainfo # shows tags/info about video/audio files
|
||||||
|
usbutils # tools for working with usb devices (like lsusb)
|
||||||
|
hexyl # hex viewer
|
||||||
|
strace # linux system call tracer
|
||||||
|
yt-dlp # media downloader
|
||||||
|
glow # markdown renderer
|
||||||
|
xdg-ninja # check $HOME for unwanted files
|
||||||
|
nettools # Various tools for controlling the network
|
||||||
|
dnsutils # DNS utilities
|
||||||
|
dig # DNS utilities
|
||||||
|
curl # CLI tool for transfering data with URLs
|
||||||
|
|
||||||
|
# Rust replacements
|
||||||
|
procs # better ps
|
||||||
|
ripgrep # better grep
|
||||||
|
fd # better find
|
||||||
|
du-dust # better du
|
||||||
|
bat # better cat
|
||||||
|
|
||||||
|
# Development
|
||||||
|
gcc # GNU C compiler
|
||||||
|
cmake # build system generator
|
||||||
|
meson # C/C++ build system
|
||||||
|
gh # GitHub CLI tool
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue