blob: 9cdce01e25d14d74bf80b9c774b409d8eeac3692 (
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
sqlite
strace
tcpdump
tmux
traceroute
unzip
usbutils
vim
wget
wireguard
];
programs.bcc.enable = true;
}
|