35 lines
383 B
Nix
35 lines
383 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
yt-dlp
|
|
bat
|
|
ripgrep
|
|
ffmpeg-full
|
|
rsync
|
|
dutree
|
|
tmux
|
|
git
|
|
samba
|
|
eza
|
|
jq
|
|
fd
|
|
bc
|
|
sysstat
|
|
procs
|
|
btop
|
|
htop
|
|
smartmontools
|
|
direnv
|
|
zellij
|
|
pueue
|
|
#nvtop
|
|
glxinfo
|
|
vulkan-tools
|
|
pciutils
|
|
blesh
|
|
cachix
|
|
];
|
|
}
|