24 lines
276 B
Nix
24 lines
276 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
|
||
|
];
|
||
|
}
|