nixos-config/common/components/packages-base.nix

27 lines
316 B
Nix
Raw Normal View History

2024-04-22 21:47:52 +02:00
{
pkgs,
lib,
...
}: {
# Packages installd on every machine
environment.systemPackages = with pkgs; [
wget
dig
nmap
btop
gitFull
smartmontools
lm_sensors
pciutils
gcc
gnumake
sysstat
file
ffmpeg
usbutils
2024-06-26 18:52:51 +02:00
bat
2024-08-06 18:44:43 +02:00
dust
2024-08-23 11:33:58 +02:00
nix-output-monitor
2024-04-22 21:47:52 +02:00
];
}