nixos-config/common/packages.nix
Christoph Heiss e1f2d8c091
home-manager: move python3 to system packages to avoid conflict
Otherwise, this overrides the system python3 on maui and causes
depedency hell.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2024-01-26 11:35:25 +01:00

61 lines
871 B
Nix

{ config, 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
iotop
iputils
jq
lm_sensors
lshw
lsof
neofetch
nettools
nmap
pciutils
powertop
python3
ripgrep
rlwrap
rsync
smartmontools
strace
sudo
tcpdump
tree
unzip
usbutils
wget
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;
}