nixfiles/home/dev/all/info.nix

21 lines
286 B
Nix
Raw Normal View History

{pkgs, ...}: {
home.packages = with pkgs; [
neofetch
(inxi.override {
withRecommendedSystemPrograms = true;
})
lm_sensors
hddtemp
freeipmi
ipmitool
smartmontools
tree
btop
htop
pciutils
usbutils
iotop
iptraf-ng
];
2022-07-27 16:47:49 +01:00
}