blob: 63643e96fba5841bd5c918c86144b900d845d803 (
plain) (
tree)
|
|
{pkgs, config, lib, ...}:
with lib;
let
linuxpkgs = config.boot.kernelPackages;
in {
environment.systemPackages = with pkgs; [
binutils
cacert
curl
dmidecode
flameGraph
git
htop
hwdata
iftop
iptraf-ng
linuxpkgs.perf
lm_sensors
lsb-release
lsof
man-pages
mg
mtr
openssl
openssl
parted
pciutils
perf-tools
powertop
rsync
strace
tcpdump
tmux
traceroute
unzip
usbutils
vim
wget
wireguard
];
programs.bcc.enable = true;
}
|