27 lines
316 B
Nix
27 lines
316 B
Nix
{
|
|
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
|
|
bat
|
|
dust
|
|
nix-output-monitor
|
|
];
|
|
}
|