nixos-config/common/packages.nix
Christoph Heiss c8fabd7341
common: packages: Add bc to system tools
Always useful to have ..

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-10-15 23:43:34 +02:00

60 lines
775 B
Nix

{ pkgs, ... }:
{
hardware.enableRedistributableFirmware = true;
environment.systemPackages = with pkgs; [
bat
bc
bmon
curl
diffutils
dig
dmidecode
dnsutils
elinks
ethtool
file
findutils
fzf
gcc
gnugrep
gnumake
gnused
gnutar
inetutils
iotop
jq
linuxPackages.perf
lm_sensors
lshw
lsof
neofetch
nettools
nmap
pciutils
ripgrep
rlwrap
rsync
strace
sudo
tcpdump
traceroute
tree
unzip
usbutils
wget
which
whois
xz
zstd
];
programs.command-not-found.enable = false;
programs.htop.enable = true;
programs.mtr.enable = true;
programs.zsh.enable = true;
security.apparmor.enable = false;
}