56 lines
615 B
Nix
56 lines
615 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
killall
|
|
gnumake
|
|
smartmontools
|
|
git
|
|
tmux
|
|
dutree
|
|
cachix
|
|
unzip
|
|
ollama
|
|
# unrar
|
|
p7zip
|
|
zip
|
|
gzip
|
|
usbutils
|
|
binutils
|
|
podman-compose
|
|
eza
|
|
nushellFull
|
|
# img2pdf
|
|
yt-dlp
|
|
bat
|
|
rsync
|
|
jq
|
|
ripgrep
|
|
fd
|
|
socat
|
|
ffmpeg_5-full
|
|
imagemagick
|
|
libheif
|
|
trash-cli
|
|
htop
|
|
btop
|
|
bc
|
|
sysstat
|
|
procs
|
|
pandoc
|
|
samba
|
|
blesh
|
|
# OVMFFull
|
|
quickemu
|
|
macchina
|
|
neofetch
|
|
fwupd
|
|
ts
|
|
du-dust
|
|
sbcl
|
|
];
|
|
}
|
|
|