nixos-config/common/packages.nix

46 lines
724 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
hardware.enableRedistributableFirmware = true;
environment.systemPackages = (with pkgs; [
dmidecode
dnsutils
ethtool
file
findutils
fzf
gcc
gnugrep
gnumake
gnused
gnutar
iotop
iputils
lm_sensors
lshw
lsof
nettools
pciutils
powertop
python3
smartmontools
strace
sudo
tcpdump
tree
usbutils
which
xz
zstd
]) ++ (with config.boot.kernelPackages; [ cpupower perf ]);
programs.command-not-found.enable = false;
programs.htop.enable = true;
programs.mtr.enable = true;
programs.traceroute.enable = true;
programs.zsh.enable = true;
security.apparmor.enable = false;
}