41 lines
382 B
Nix
41 lines
382 B
Nix
{ pkgs, ... }: {
|
|
environment.packages = with pkgs; [
|
|
android-tools
|
|
binwalk
|
|
coreutils
|
|
curl
|
|
diffutils
|
|
ffmpeg
|
|
file
|
|
findutils
|
|
gcc
|
|
git
|
|
gnugrep
|
|
gnumake
|
|
gnused
|
|
gnutar
|
|
gzip
|
|
hostname
|
|
imagemagick
|
|
jq
|
|
lsof
|
|
ltex-ls
|
|
man
|
|
ncdu
|
|
neovim
|
|
nmap
|
|
openssh
|
|
parallel
|
|
pv
|
|
ripgrep
|
|
sqlite
|
|
tmux
|
|
tree
|
|
utillinux
|
|
wget
|
|
xz
|
|
yt-dlp
|
|
zip unzip
|
|
];
|
|
}
|