22 lines
300 B
Nix
22 lines
300 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
neofetch
|
|
(inxi.override {
|
|
withRecommendedSystemPrograms = true;
|
|
})
|
|
lm_sensors
|
|
hddtemp
|
|
freeipmi
|
|
ipmitool
|
|
smartmontools
|
|
tree
|
|
btop
|
|
htop
|
|
pciutils
|
|
usbutils
|
|
i2c-tools
|
|
iotop
|
|
iptraf-ng
|
|
];
|
|
}
|