nixos-config/common/packages.nix
Christoph Heiss df9b15996d
machines: Add 'name'
Runs blocky + unbound for custom DNS.
Also adds all the common nix infrastructure needed.

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-04-01 22:20:34 +02:00

54 lines
673 B
Nix

{ pkgs, ... }:
{
hardware.enableRedistributableFirmware = true;
environment.systemPackages = with pkgs; [
bat
bmon
curl
diffutils
dig
dmidecode
dnsutils
elinks
ethtool
file
findutils
fzf
gnugrep
gnused
gnutar
inetutils
iotop
jq
linuxPackages.perf
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;
security.apparmor.enable = false;
}